passwordapi.h
来自「很好用的ftp源码」· C头文件 代码 · 共 37 行
H
37 行
/*****************************************************************************\
FILE: passwordapi.h
DESCRIPTION:
We want to store FTP passwords in a secure API. We will use the
PStore APIs on WinNT and the PWL APIs on Win9x. This code was taken
from wininet.
Copyright (c) 1998 Microsoft Corporation
\*****************************************************************************/
#ifndef _PASSWORDAPI_H
#define _PASSWORDAPI_H
#include "priv.h"
#include "util.h"
// ----------------Public function prototypes----------------------
// Determines availability of credential cache.
HRESULT InitCredentialPersist(void);
// Persist credentials (username/password).
HRESULT SetCachedCredentials(LPCWSTR pszKey, LPCWSTR pszValue);
// Get persisted credentials (username/password).
HRESULT GetCachedCredentials(LPCWSTR pszKey, LPWSTR pszValue, DWORD cchSize);
// Remove persisted credentials (username/password).
HRESULT RemoveCachedCredentials(LPCWSTR pszKey);
HRESULT InitCredentialPersist(void);
#endif // _PASSWORDAPI_H
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?