Re: [advpack] Implement RegisterOCX and stub out DelNodeRunDLL32

2005-03-14 Thread Dmitry Timoshkov
"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.

Re: [advpack] Implement RegisterOCX and stub out DelNodeRunDLL32

2005-03-14 Thread Matthew Mastracci
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

Re: [advpack] Implement RegisterOCX and stub out DelNodeRunDLL32

2005-03-14 Thread Dmitry Timoshkov
"Matthew Mastracci" <[EMAIL PROTECTED]> wrote: > +typedef HRESULT (*DLLREGISTER) (void); Shouldn't it have a WINAPI modifier? -- Dmitry.

[advpack] Implement RegisterOCX and stub out DelNodeRunDLL32

2005-03-14 Thread Matthew Mastracci
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