Leaked source code of windows server 2003
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

  1. //--------------------------------------------------------------------------
  2. // Dllmain.h
  3. //--------------------------------------------------------------------------
  4. #pragma once
  5. //--------------------------------------------------------------------------
  6. // Globals
  7. //--------------------------------------------------------------------------
  8. extern CRITICAL_SECTION g_csDllMain;
  9. extern CRITICAL_SECTION g_csDBListen;
  10. extern LONG g_cRef;
  11. extern LONG g_cLock;
  12. extern HINSTANCE g_hInst;
  13. extern SYSTEM_INFO g_SystemInfo;
  14. extern BOOL g_fIsWinNT;
  15. //--------------------------------------------------------------------------
  16. // Prototypes
  17. //--------------------------------------------------------------------------
  18. ULONG DllAddRef(void);
  19. ULONG DllRelease(void);