"Matthew Mastracci" <[EMAIL PROTECTED]> wrote:
> Note that I copied the callback function definiton verbatim from Wine's
> regsvr32 implementation. Should the definition in regsvr32 include
> WINAPI as well?
Very likely that yes, it should.
--
Dmitry.
Dmitry Timoshkov wrote:
"Matthew Mastracci" <[EMAIL PROTECTED]> wrote:
+typedef HRESULT (*DLLREGISTER) (void);
Shouldn't it have a WINAPI modifier?
Good point, thanks. I'm sending an updated patch to wine-patches with
the WINAPI modifier.
Note that I copied the callback function defin
"Matthew Mastracci" <[EMAIL PROTECTED]> wrote:
> +typedef HRESULT (*DLLREGISTER) (void);
Shouldn't it have a WINAPI modifier?
--
Dmitry.
This patch helps the IE6 installer get past the DLL registration stage.
The DelNodeRunDLL32 function is stubbed out, but RegisterOCX will
correctly register a COM DLL by calling its DllRegisterServer function.
ChangeLog:
* dlls/advpack/advpack.c
Matthew Mastracci <[EMAIL PROTECTED]>
Im