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

📄 threadstruct.h

📁 加密技术VC++
💻 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 + -