📄 threadstruct.h
字号:
#ifndef THREADSTRUCTH
#define THREADSTRUCTH
/////////////////////////////////////////////////////////////
// thread info structure
// use the GET_SAFE / SET_SAFE functions with anything shared between threads!
typedef struct ThreadInfo_tag
{
CString csFile; // file to process
BOOL bDone; // set to TRUE when done
BOOL bStop; // stop if this becomes TRUE
BOOL bDir; // set to TRUE if directory
BOOL bEncrypt; // set to TRUE if encrypting is needed
int iErr; // set by thread
} ThreadInfo;
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -