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
427 B
11 lines
427 B
// ========================================================================
|
|
// Password Handling API
|
|
// ========================================================================
|
|
#ifndef __PASSWORD_H
|
|
#define __PASSWORD_H
|
|
|
|
HRESULT HrLoadPassword (HKEY hReg, LPTSTR lpszRegKey, LPTSTR lpszPass, ULONG *pcbPass);
|
|
HRESULT HrSavePassword (HKEY hReg, LPTSTR lpszRegKey, LPTSTR lpszPass, ULONG cbPass);
|
|
|
|
#endif __PASSWORD_H
|
|
|