passwordsafe.h
来自「Password Safe Password Safe is a passwor」· C头文件 代码 · 共 58 行
H
58 行
// PasswordSafe.h// main header file for the PasswordSafe application//-----------------------------------------------------------------------------#if defined(WIN32)#include "stdafx.h"#endif#include "corelib/PwsPlatform.h"#if !defined(WCE_INS)#if defined(POCKET_PC)#define WCE_INS#else#define WCE_INS /##/#endif#endif#if !defined(WCE_DEL)#if defined(POCKET_PC)#define WCE_DEL /##/#else#define WCE_DEL#endif#endif/* jpr debug stuff*/#include "jprdebug.h"/* eventually, this breaks off into pws_mfc.h*//* a globally available reference to the app object, which is a whole lot cleaner (in my mind) than constantly calling AfxGetApp() for the same thing... {jpr}*/class ThisMfcApp;extern ThisMfcApp app;/* * This is the string to be displayed instead of the actual password, unless * the user chooses to see the password: */extern const TCHAR *HIDDEN_PASSWORD;//-----------------------------------------------------------------------------// Local variables:// mode: c++// End:
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?