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) -

java - JPA TypedQuery: Parameter value element did not match expected type -

c++ - static template member variable has internal linkage but is not defined -