threadstruct.h
来自「加密技术VC++」· C头文件 代码 · 共 19 行
H
19 行
#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 + =
减小字号Ctrl + -
显示快捷键?