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.

18 lines
764 B

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