mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
20 lines
332 B
C
20 lines
332 B
C
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern BOOL bIsWindows;
|
|
extern BOOL bIsPreVistaOSVersion;
|
|
|
|
extern const LPCWSTR IDS_REACTOS;
|
|
extern const LPCWSTR IDS_MICROSOFT;
|
|
extern const LPCWSTR IDS_WINDOWS;
|
|
|
|
extern HINSTANCE hInst;
|
|
extern LPWSTR szAppName;
|
|
extern HWND hMainWnd;
|
|
|
|
#ifdef __cplusplus
|
|
} // extern "C"
|
|
#endif
|