9 lines
187 B
C
9 lines
187 B
C
// File: global.h
|
|
|
|
extern HINSTANCE g_hInst;
|
|
inline HINSTANCE GetInstanceHandle() { return g_hInst; }
|
|
|
|
extern BOOL g_fLoggedOn;
|
|
inline BOOL FIsLoggedOn() { return g_fLoggedOn; }
|
|
|