epocstore.h

来自「大名鼎鼎的远程登录软件putty的Symbian版源码」· C头文件 代码 · 共 38 行

H
38
字号
/** @file epocstore.h * * Symbian OS implementation of PuTTY settings storage interface. * * Mostly copied from the SyOSsh EPOC Release 5 port by Gabor Keresztfalvi, * some additional fixes for the current Symbian port by Petteri Kangaslampi. * Originally based on winstore.c in the PuTTY distribution. * * [No copyright messages in the original, assumed to be copyrighted by *  Gabor Keresztfavli and available through the PuTTY license] * * Portions copyright 2002 Petteri Kangaslampi * * See license.txt for full copyright and license information.*/#ifndef __EPOCSTORE_H__#define __EPOCSTORE_H__/** * Initializes the settings storage subsystem. *  * @param aDataPath The directory to use for stored files. Typically this is *                  the PuTTY application installation path. Note that this *                  is used for the random seed and host key files only, the *                  settings files always use an absolute pathname. */void epoc_store_init(const TDesC &aDataPath);/**  * Uninitializes the settings storage subsystem. Must be called before the * application exits. *  */void epoc_store_free();#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?