Question

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?

Was it helpful?

Solution

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

HANDLE thread = ::CreateThread( ... );
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top