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.
21 lines
858 B
21 lines
858 B
//--------------------------------------------------------------------------
|
|
// Dllmain.h
|
|
//--------------------------------------------------------------------------
|
|
#pragma once
|
|
|
|
//--------------------------------------------------------------------------
|
|
// Globals
|
|
//--------------------------------------------------------------------------
|
|
extern CRITICAL_SECTION g_csDllMain;
|
|
extern CRITICAL_SECTION g_csDBListen;
|
|
extern LONG g_cRef;
|
|
extern LONG g_cLock;
|
|
extern HINSTANCE g_hInst;
|
|
extern SYSTEM_INFO g_SystemInfo;
|
|
extern BOOL g_fIsWinNT;
|
|
|
|
//--------------------------------------------------------------------------
|
|
// Prototypes
|
|
//--------------------------------------------------------------------------
|
|
ULONG DllAddRef(void);
|
|
ULONG DllRelease(void);
|