Frage

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?

War es hilfreich?

Lösung

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

HANDLE thread = ::CreateThread( ... );
Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top