I Make first MFC Apps inside CreateThread Function used but it required 6 parameters. Create Thread function description

Make MFC Shared DLL all code paste in DLL Application.

but i compile dll then get error

Error 17 error C2660: 'CWinThread::CreateThread' : function does not take 6 arguments

how to access create thread function with 6 parameter in mfc share dll app?

有帮助吗?

解决方案

You need to specify the CreateThread function in the global name space:

HANDLE thread = ::CreateThread( ... );
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top