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.

57 lines
780 B

  1. /*++
  2. Copyright (C) Microsoft Corporation, 2000
  3. Module Name:
  4. keylimit
  5. Abstract:
  6. This header file is tempory. It should be incorporated into wincrypt.h
  7. Author:
  8. Doug Barlow (dbarlow) 2/2/2000
  9. Remarks:
  10. ?Remarks?
  11. Notes:
  12. ?Notes?
  13. --*/
  14. #ifndef _KEYLIMIT_H_
  15. #define _KEYLIMIT_H_
  16. #ifdef __cplusplus
  17. extern "C" {
  18. #endif
  19. //
  20. // These definitions are private, to be shared between advapi32.dll and
  21. // keylimit.dll.
  22. //
  23. typedef struct {
  24. ALG_ID algId;
  25. DWORD dwMinKeyLength;
  26. DWORD dwMaxKeyLength;
  27. DWORD dwRequiredFlags;
  28. DWORD dwDisallowedFlags;
  29. } KEYLIMIT_LIMITS;
  30. typedef struct {
  31. DWORD dwCountryValue;
  32. DWORD dwLanguageValue;
  33. KEYLIMIT_LIMITS *pLimits;
  34. } KEYLIMIT_LOCALE;
  35. #ifdef __cplusplus
  36. }
  37. #endif
  38. #endif // _KEYLIMIT_H_