📄 thread.h
字号:
// $Id: thread.h,v 1.1.1.1 2002/09/24 11:12:17 dev Exp $
#ifndef _thread_h_
#define _thread_h_
#include <process.h>
#define lib_CreateThread( \
lpThreadAttributes, \
dwStackSize, \
lpStartAddress, \
lpParameter, \
dwCreationFlags, \
lpThreadId) \
\
(HANDLE)_beginthreadex((lpThreadAttributes), (unsigned)(dwStackSize), (lpStartAddress), \
(lpParameter), (unsigned)(dwCreationFlags), (unsigned *)(lpThreadId))
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -