1 #pragma once 2 3 #ifdef __cplusplus 4 extern "C" { 5 #endif 6 7 extern BOOL bIsWindows; 8 extern BOOL bIsPreVistaOSVersion; 9 10 extern const LPCWSTR IDS_REACTOS; 11 extern const LPCWSTR IDS_MICROSOFT; 12 extern const LPCWSTR IDS_WINDOWS; 13 14 extern HINSTANCE hInst; 15 extern LPWSTR szAppName; 16 extern HWND hMainWnd; 17 18 #ifdef __cplusplus 19 } // extern "C" 20 #endif 21