|
CreateThread에서 인자중에 아이디 인자에 1~100까지의 임의의 수로 아이디를 부여해두 되나여...
DWORD dwThreadID = 1; 같이요...
HANDLE CreateThread(
LPSECURITY_ATTRIBUTES lpThreadAttributes, // pointer to thread security attributes
DWORD dwStackSize, // initial thread stack size, in bytes
LPTHREAD_START_ROUTINE lpStartAddress, // pointer to thread function
LPVOID lpParameter, // argument for new thread
DWORD dwCreationFlags, // creation flags
LPDWORD lpThreadId // pointer to returned thread identifier
);
항상 질문만 하는 blue_sky가...
답변 부탁드리고 조은 하루되세요.
|