⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pocketpc.h

📁 Password Safe Password Safe is a password database utility. Users can keep their passwords securely
💻 H
字号:
#ifndef __POCKETPC_H__#define __POCKETPC_H__//-----------------------------------------------------------------------------// An implementation of certain c runtime library functions not implemented in// the standard Windows CE / PocketPC environment//-----------------------------------------------------------------------------#include "../PwsPlatform.h"#if defined(POCKET_PC)#include <stdlib.h>#include <Afxwin.h>#define EACCES	ERROR_ACCESS_DENIED#define EEXIST	ERROR_FILE_EXISTS#define EINVAL	ERROR_INVALID_PARAMETER#define ENOENT	ERROR_FILE_NOT_FOUND#define EMFILE	ERROR_TOO_MANY_OPEN_FILESextern int errno;#ifdef UNICODEextern int rename( const wchar_t *oldname, const wchar_t *newname );#elseextern int rename( const char *oldname, const char *newname );#endifextern time_t	time( time_t *timer );extern void		centreWithin( CRect &larger, CRect &smaller, CRect &result );extern void		centreWithin( CWnd *parent, CWnd *child, CRect &result );extern DWORD	DisableWordCompletion( HWND hwnd );extern void		EnableWordCompletion( HWND hwnd );#endif#endif

⌨️ 快捷键说明

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