tools.h
来自「wince 用的注册表编辑器源代码。可以看和编辑wince 注册表」· C头文件 代码 · 共 29 行
H
29 行
#ifndef APP_TOOLS1
#define APP_TOOLS1
#ifdef __cplusplus
extern "C" {
#endif
BOOL Fopen( LPCTSTR path, LPCTSTR modestr ) ;
void Fclose( void ) ;
int Fgetc( void ) ;
char* Fgets( char *buf, int size ) ;
int Fputc( int c ) ;
int Fputs( const char *buf ) ;
void Fwrite( const char *buf, int size ) ;
BOOL Fexist( LPCTSTR path ) ;
void slash2backslash( LPTSTR str ) ;
void catdir( LPTSTR body, LPCTSTR adddir, LPTSTR pPrevDir ) ;
HFONT CreateListboxFont() ;
extern HANDLE g_hFile1 ;
#ifdef __cplusplus
} ;
#endif
#endif /* APP_TOOLS1 */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?