Re: [1/3] xinput: Initial implementation of xinput xbox 360 joystick library
"Andrew Fenn" <andrewfenn(a)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(a)winehq.org
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(a)winehq.org> wrote:
"Andrew Fenn" <andrewfenn(a)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(a)winehq.org
"Andrew Fenn" <andrewfenn(a)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. -- Alexandre Julliard julliard(a)winehq.org
participants (2)
-
Alexandre Julliard -
Andrew Fenn