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

  1. ///////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright (c) Microsoft Corporation
  4. //
  5. // SYNOPSIS
  6. //
  7. // Declares
  8. //
  9. ///////////////////////////////////////////////////////////////////////////////
  10. #ifndef IASLIMITS_H
  11. #define IASLIMITS_H
  12. #pragma once
  13. import "unknwn.idl";
  14. cpp_quote("#define IAS_NO_LIMIT (0x7FFFFFFF)")
  15. cpp_quote("#define IAS_E_LICENSE_VIOLATION \\")
  16. cpp_quote(" (HRESULT_FROM_WIN32(ERROR_LICENSE_QUOTA_EXCEEDED))")
  17. typedef struct tagIAS_PRODUCT_LIMITS {
  18. DWORD maxClients;
  19. BOOL allowSubnetSyntax;
  20. DWORD maxServerGroups;
  21. } IAS_PRODUCT_LIMITS, *PIAS_PRODUCT_LIMITS;
  22. [
  23. object,
  24. uuid(0884CE27-5E3C-478F-9C28-8E71003DE3CB)
  25. ]
  26. interface IASProductLimits : IUnknown
  27. {
  28. [propget]
  29. HRESULT Limits([out, retval] IAS_PRODUCT_LIMITS* pVal);
  30. };
  31. #endif // IASLIMITS_H