"Andrew Fenn" andrewfenn@gmail.com writes:
+BOOL WINAPI DllMain(HINSTANCE inst, DWORD reason, LPVOID reserved) +{
- switch(reason)
- {
- case DLL_WINE_PREATTACH:
return FALSE; /* prefer native version */
You need to do that for all the dlls, not just the 1_3 one. Also please send one patch per dll.
Do I need to include all the code as well or is this just going to be a C file with just DllMain in each of the dlls folders?
On Fri, Nov 7, 2008 at 10:21 AM, Alexandre Julliard julliard@winehq.org wrote:
"Andrew Fenn" andrewfenn@gmail.com writes:
+BOOL WINAPI DllMain(HINSTANCE inst, DWORD reason, LPVOID reserved) +{
- switch(reason)
- {
- case DLL_WINE_PREATTACH:
return FALSE; /* prefer native version */
You need to do that for all the dlls, not just the 1_3 one. Also please send one patch per dll.
-- Alexandre Julliard julliard@winehq.org
"Andrew Fenn" andrewfenn@gmail.com writes:
Do I need to include all the code as well or is this just going to be a C file with just DllMain in each of the dlls folders?
Just DllMain since the other functions are forwarded.