Source code of Windows XP (NT5)
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.

54 lines
2.2 KiB

  1. /*++
  2. * File name:
  3. * gdata.h
  4. * Contents:
  5. * Global data definitions
  6. *
  7. * Copyright (C) 1998-1999 Microsoft Corp.
  8. --*/
  9. extern HWND g_hWindow; // Window handle for the
  10. // feedback thread
  11. extern HINSTANCE g_hInstance; // Dll instance
  12. extern PWAIT4STRING g_pWaitQHead; // Linked list for waited events
  13. extern PFNPRINTMESSAGE g_pfnPrintMessage; // Trace function (from smclient)
  14. extern PCONNECTINFO g_pClientQHead; // LL of all threads
  15. extern HANDLE g_hThread; // Feedback Thread handle
  16. extern UINT WAIT4STR_TIMEOUT; // deafult is 10 min,
  17. // some events are waited
  18. // 1/4 of that time
  19. // This value can be changed from
  20. // smclient.ini [tclient]
  21. // timeout=XXX seconds
  22. extern UINT CONNECT_TIMEOUT; // Default is 35 seconds
  23. // This value can be changed from
  24. // smclient.ini [tclient]
  25. // contimeout=XXX seconds
  26. extern LPCRITICAL_SECTION g_lpcsGuardWaitQueue;
  27. // Guards the access to all
  28. // global variables
  29. extern WCHAR g_strStartRun[];
  30. extern WCHAR g_strStartRun_Act[];
  31. extern WCHAR g_strRunBox[];
  32. extern WCHAR g_strWinlogon[];
  33. extern WCHAR g_strWinlogon_Act[];
  34. extern WCHAR g_strPriorWinlogon[];
  35. extern WCHAR g_strPriorWinlogon_Act[];
  36. extern WCHAR g_strNTSecurity[];
  37. extern WCHAR g_strNTSecurity_Act[];
  38. extern WCHAR g_strSureLogoff[];
  39. extern WCHAR g_strStartLogoff[];
  40. extern WCHAR g_strSureLogoffAct[];
  41. extern WCHAR g_strLogonErrorMessage[];
  42. extern WCHAR g_strLogonDisabled[];
  43. extern CHAR g_strClientCaption[];
  44. extern CHAR g_strDisconnectDialogBox[];
  45. extern CHAR g_strYesNoShutdown[];
  46. extern CHAR g_strClientImg[];
  47. extern INT g_ConnectionFlags;