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.

32 lines
1.2 KiB

  1. /////////////////////////////////////////////////////////////////////////////
  2. // FILE : manage.h //
  3. // DESCRIPTION : //
  4. // AUTHOR : //
  5. // HISTORY : //
  6. // Apr 19 1995 larrys Cleanup //
  7. // //
  8. // Copyright (C) 1993 Microsoft Corporation All Rights Reserved //
  9. /////////////////////////////////////////////////////////////////////////////
  10. #ifndef __MANAGE_H__
  11. #define __MANAGE_H__
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15. DWORD NTLValidate(HCRYPTPROV hUID, HCRYPTKEY hKey, BYTE bTypeValue,
  16. LPVOID *ppvRet);
  17. DWORD NTLMakeItem(HCRYPTKEY *phKey, BYTE bTypeValue, void *NewData);
  18. void *NTLCheckList(HNTAG hThisThing, BYTE bTypeValue);
  19. void NTLDelete(HNTAG hItem);
  20. #define _nt_malloc(cb) ContAlloc(cb)
  21. #define _nt_free(pv, _cbSizeToZero_) ContFree(pv)
  22. #ifdef __cplusplus
  23. }
  24. #endif
  25. #endif // __MANAGE_H__