On Tue, Sep 20, 2011 at 4:05 PM, Bernhard Loos bernhardloos@googlemail.com wrote:
+# define __WINE_GENERIC_CF_DLL_MAIN_CONTENT \
return __WINE_PS_ENTRY(DllMain(hInstDll, fdwReason, lpv));
I think __WINE_PS_ENTRY needs only be applied to DllMain, not its argument, so second line should read:
+ return __WINE_PS_ENTRY(DllMain)(hInstDll, fdwReason, lpv);
Octavian