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.

41 lines
803 B

  1. /*++
  2. Copyright (c) 1998-1999 Microsoft Corporation
  3. Module Name:
  4. globals.cpp
  5. Abstract:
  6. This file contains global variables
  7. Environment:
  8. User mode
  9. Revision History:
  10. 08/04/98 -felixw-
  11. Created it
  12. --*/
  13. #include "main.h"
  14. //
  15. // Global variables
  16. //
  17. const CHAR g_szAttributeNameA[] = "MSFT1991:objectGUID";
  18. const WCHAR g_szAttributeName[] = L"MSFT1991:objectGUID";
  19. const CHAR g_szClassA[] = "Top";
  20. const WCHAR g_szClass[] = L"Top";
  21. const WCHAR g_szExtend[] = L"Extend";
  22. const WCHAR g_szCheck[] = L"Check";
  23. const WCHAR g_szDot[] = L".";
  24. const WCHAR g_szServerPrefix[] = L"\\\\";
  25. const BYTE g_pbASN[] = { 0x06, 0x0a, 0x60, 0x86, 0x48, 0x01, 0x86, 0xf8, 0x37, 0x02, 0x81, 0x02};
  26. const DWORD g_dwASN = sizeof(g_pbASN) / sizeof(BYTE);