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.

38 lines
1.1 KiB

  1. #ifndef __GDATAHEADER_H
  2. #define __GDATAHEADER_H
  3. /*++
  4. * File name:
  5. * gdata.h
  6. * Contents:
  7. * Global data definitions
  8. *
  9. * Copyright (C) 1998-1999 Microsoft Corp.
  10. --*/
  11. #ifdef __cplusplus
  12. extern "C" {
  13. #endif
  14. extern HWND g_hWindow; // Window handle for the
  15. // feedback thread
  16. extern HINSTANCE g_hInstance; // Dll instance
  17. extern PWAIT4STRING g_pWaitQHead; // Linked list for waited events
  18. extern PFNPRINTMESSAGE g_pfnPrintMessage; // Trace function (from smclient)
  19. extern PCONNECTINFO g_pClientQHead; // LL of all threads
  20. extern HANDLE g_hThread; // Feedback Thread handle
  21. extern LPCRITICAL_SECTION g_lpcsGuardWaitQueue;
  22. // Guards the access to all
  23. // global variables
  24. extern CHAR g_strConsoleExtension[];
  25. extern INT g_ConnectionFlags;
  26. extern INT g_bTranslateStrings;
  27. #ifdef __cplusplus
  28. }
  29. #endif
  30. #endif // __GDATAHEADER_H