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

  1. /*
  2. * Copyright (c) 1998 Microsoft Corporation
  3. *
  4. * Module Name:
  5. *
  6. * licenoc.h
  7. *
  8. * Abstract:
  9. *
  10. * This file contains the main OC code.
  11. *
  12. * Author:
  13. *
  14. * Breen Hagan (BreenH) Oct-02-98
  15. *
  16. * Environment:
  17. *
  18. * User Mode
  19. */
  20. #ifndef _LSOC_LICENOC_H_
  21. #define _LSOC_LICENOC_H_
  22. #define MESSAGE_SIZE 1024
  23. #define TITLE_SIZE 128
  24. const DWORD SECTIONSIZE = 256;
  25. const TCHAR COMPONENT_NAME[] = _T("LicenseServer");
  26. typedef enum {
  27. kInstall,
  28. kUninstall,
  29. kDoNothing,
  30. } EInstall;
  31. typedef enum {
  32. ePlainServer = 0,
  33. eEnterpriseServer,
  34. eMaxServers
  35. } EServerType;
  36. #endif // _LSOC_LICENOC_H_