mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
928 B
44 lines
928 B
//
|
|
// dll.h
|
|
//
|
|
|
|
#ifndef __DLL_H__
|
|
#define __DLL_H__
|
|
|
|
extern HINSTANCE g_hinst;
|
|
|
|
#ifdef WIN32
|
|
|
|
// Notes:
|
|
// 1. Never "return" from the critical section.
|
|
// 2. Never "SendMessage" or "Yield" from the critical section.
|
|
// 3. Never call USER API which may yield.
|
|
// 4. Always make the critical section as small as possible.
|
|
// 5. Critical sections in Win95 block across processes. In NT
|
|
// they are per-process only, so use mutexes instead.
|
|
//
|
|
|
|
#define WIN32_CODE(x) x
|
|
|
|
void PUBLIC Dll_EnterExclusive(void);
|
|
void PUBLIC Dll_LeaveExclusive(void);
|
|
extern BOOL g_bExclusive;
|
|
extern BOOL g_bAdminUser;
|
|
#define USER_IS_ADMIN() (g_bAdminUser)
|
|
|
|
#define ENTER_X() Dll_EnterExclusive();
|
|
#define LEAVE_X() Dll_LeaveExclusive();
|
|
#define ASSERT_X() ASSERT(g_bExclusive)
|
|
|
|
#else // WIN32
|
|
|
|
#define WIN32_CODE(x)
|
|
|
|
#define ENTER_X()
|
|
#define LEAVE_X()
|
|
#define ASSERT_X()
|
|
|
|
#endif // WIN32
|
|
|
|
#endif //!__DLL_H__
|
|
|