📄 tools.h
字号:
#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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -