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
552 B

  1. /*++
  2. Copyright (c) 2001 Microsoft Corporation
  3. All rights reserved.
  4. Module Name:
  5. lsagbl.hxx
  6. Abstract:
  7. Lsa globals header file
  8. Author:
  9. Larry Zhu (Lzhu) May 1, 2001
  10. Revision History:
  11. --*/
  12. #ifndef _LSAGBL_HXX_
  13. #define _LSAGBL_HXX_
  14. namespace LSA_NS {
  15. typedef struct _TLsaLibarayGlobals
  16. {
  17. UINT uMajorVersion;
  18. UINT uMinorVersion;
  19. UINT uDebugMask;
  20. PCSTR pszDbgPrompt;
  21. } TLsaLibarayGlobals;
  22. extern TLsaLibarayGlobals g_Globals;
  23. }
  24. #endif // _LSAGBL_HXX_