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.

11 lines
475 B

  1. // a record that is just like, the LSA_UNICODE_STRING, except that I can use it
  2. // without having to include all the NT headers
  3. HANDLE HOpenLSAPolicy( WCHAR *pszwServer, DWORD *pErr );
  4. BOOL FCloseLSAPolicy( HANDLE hPolicy, DWORD *pErr );
  5. BOOL FStoreLSASecret( HANDLE hPolicy, WCHAR* pszwSecretName, void* pvData, WORD cbData, DWORD *pErr );
  6. PLSA_UNICODE_STRING FRetrieveLSASecret( HANDLE hPolicy, WCHAR* pszwSecretName, DWORD *pErr );
  7. void DisposeLSAData( PVOID pData );