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.

50 lines
751 B

  1. /*++
  2. Copyright (c) 1998-1999 Microsoft Corporation
  3. Module Name:
  4. globals.h
  5. Abstract:
  6. This file contains global variables extern declarations
  7. Environment:
  8. User mode
  9. Revision History:
  10. 08/04/98 -felixw-
  11. Created it
  12. --*/
  13. #ifndef _EXTERN_H_
  14. #define _EXTERN_H_
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif
  18. //
  19. // Global variables
  20. //
  21. extern const CHAR g_szAttributeNameA[];
  22. extern const WCHAR g_szAttributeName[];
  23. extern const WCHAR g_szClass[];
  24. extern const CHAR g_szClassA[];
  25. extern const WCHAR g_szExtend[];
  26. extern const WCHAR g_szCheck[];
  27. extern const WCHAR g_szDot[];
  28. extern const WCHAR g_szServerPrefix[];
  29. extern const BYTE g_pbASN[];
  30. extern const DWORD g_dwASN;
  31. #ifdef __cplusplus
  32. }
  33. #endif
  34. #endif // ifndef _EXTERN_H_