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.

43 lines
754 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. kStandaloneInstall,
  30. kStandaloneUninstall,
  31. kDoNothing,
  32. } EInstall;
  33. typedef enum {
  34. ePlainServer = 0,
  35. eEnterpriseServer,
  36. eMaxServers
  37. } EServerType;
  38. #endif // _LSOC_LICENOC_H_