?? passwordsafe.h
字號:
// 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 + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -