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.

28 lines
634 B

  1. #if !defined(SERVICES__Globals_h__INCLUDED)
  2. #define SERVICES__Globals_h__INCLUDED
  3. #pragma once
  4. extern HINSTANCE g_hDll;
  5. #if USE_DYNAMICTLS
  6. extern DWORD g_tlsThread; // TLS Slot for Thread data
  7. #endif
  8. #if ENABLE_MPH
  9. extern MESSAGEPUMPHOOK
  10. g_mphReal;
  11. #endif
  12. class GdiCache;
  13. class BufferManager;
  14. class ComManager;
  15. class TicketManager;
  16. inline GdiCache * GetGdiCache();
  17. inline BufferManager * GetBufferManager();
  18. inline ComManager * GetComManager();
  19. DuTicketManager * GetTicketManager();
  20. #include "Globals.inl"
  21. #endif // SERVICES__Globals_h__INCLUDED