1 /* 2 * PROJECT: ReactOS SDK 3 * LICENSE: MIT (https://spdx.org/licenses/MIT) 4 * PURPOSE: WinRT core wrappers 5 * COPYRIGHT: Copyright 2024 Timo Kreuzer (timo.kreuzer@reactos.org) 6 */ 7 8 #pragma once 9 #define _WRL_COREWRAPPERS_H_ 10 11 #include <windows.h> 12 #include <intsafe.h> 13 #include <roapi.h> 14 15 #ifdef __cplusplus 16 extern "C" { 17 #endif 18 19 // TBD 20 21 #ifdef __cplusplus 22 } // extern "C" 23 #endif 24