1 // 2 // Copyright © 2020 Arm Ltd. All rights reserved. 3 // SPDX-License-Identifier: MIT 4 // 5 6 #pragma once 7 8 #include <cstdint> 9 10 extern "C" 11 { 12 const char* GetBackendId(); 13 void GetVersion(uint32_t* outMajor, uint32_t* outMinor); 14 void* BackendFactory(); 15 } 16