visual studio - WIN API CreateThread not accessible in MFC Share DLL? -


I use the first MFC apps inside the CreateThread function, but it requires 6 parameters

MLC share Paste all code into the DLL application.

But error I get DLL compile

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

How to make thread function with 6 parameters in mfc share dll app?

You must specify the CreateThread function in the global name space:

  handle thread = :: create formula (...);    

Comments

Popular posts from this blog

Java - Error: no suitable method found for add(int, java.lang.String) -

c# - passing input text from view to contoller with FacebookContext using Facebook app -

Calling a C++ function from C# by passing a string with variable size to it -