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.

33 lines
1.4 KiB

  1. // --------------------------------------------------------------------------------
  2. // Dllmain.h
  3. // Copyright (c)1993-1995 Microsoft Corporation, All Rights Reserved
  4. // Steven J. Bailey
  5. // --------------------------------------------------------------------------------
  6. #ifndef __DLLMAIN_H
  7. #define __DLLMAIN_H
  8. #include "msident.h"
  9. // --------------------------------------------------------------------------------
  10. // Forward-Decls
  11. // --------------------------------------------------------------------------------
  12. class CAccountManager;
  13. // --------------------------------------------------------------------------------
  14. // Globals
  15. // --------------------------------------------------------------------------------
  16. extern HINSTANCE g_hInst;
  17. extern HINSTANCE g_hInstRes;
  18. extern LONG g_cRef;
  19. extern LONG g_cLock;
  20. extern CRITICAL_SECTION g_csDllMain;
  21. extern CRITICAL_SECTION g_csAcctMan;
  22. extern CAccountManager *g_pAcctMan;
  23. extern BOOL g_fCachedGUID;
  24. extern GUID g_guidCached;
  25. // --------------------------------------------------------------------------------
  26. // Prototypes
  27. // --------------------------------------------------------------------------------
  28. ULONG DllAddRef(void);
  29. ULONG DllRelease(void);
  30. #endif // __DLLMAIN_H