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.

40 lines
1.0 KiB

  1. /*++
  2. Copyright (c) 1997 Microsoft Corporation
  3. Module Name:
  4. keysvc.acf
  5. Author:
  6. jeffspel 12-Jun-97
  7. --*/
  8. #ifdef CLIENT
  9. typedef [allocate(all_nodes)] PKEYSVC_BLOB;
  10. typedef [allocate(all_nodes)] PKEYSVC_PROVIDER_INFO;
  11. typedef [allocate(all_nodes)] PKEY_ID;
  12. typedef [allocate(all_nodes)] PKEYSVC_KEY_INFO;
  13. typedef [allocate(all_nodes)] PKEYSVC_CERT_INFO;
  14. typedef [allocate(all_nodes)] PKEYSVC_KEYS;
  15. typedef [allocate(all_nodes)] PKEYSVC_UNICODE_STRING;
  16. typedef [allocate(all_nodes)] PKEYSVC_CERT_ENROLL_INFO;
  17. typedef [allocate(all_nodes)] PKEYSVC_CERT_REQUEST_PVK_NEW;
  18. #else
  19. typedef [allocate(all_nodes)] PKEYSVC_BLOB;
  20. typedef [allocate(all_nodes)] PKEYSVC_PROVIDER_INFO;
  21. typedef [allocate(all_nodes)] PKEY_ID;
  22. typedef [allocate(all_nodes)] PKEYSVC_KEY_INFO;
  23. typedef [allocate(all_nodes)] PKEYSVC_CERT_INFO;
  24. typedef [allocate(all_nodes)] PKEYSVC_KEYS;
  25. typedef [allocate(all_nodes)] PKEYSVC_UNICODE_STRING;
  26. typedef [allocate(all_nodes)] PKEYSVC_CERT_ENROLL_INFO;
  27. typedef [allocate(all_nodes)] PKEYSVC_CERT_REQUEST_PVK_NEW;
  28. #endif