result2 seems to be optional, making it 0 allows IE to continue.

oldstable
Mike Hearn 2004-01-02 20:13:35 +00:00 committed by Alexandre Julliard
parent 903d1f25ce
commit f902d2965f
1 changed files with 3 additions and 2 deletions

View File

@ -125,9 +125,10 @@ HRESULT WINAPI Extract(EXTRACTdest *dest, LPCSTR what)
* DXDDEX.CAB, DXMINI.CAB, SWFLASH.CAB on win2k
* but it crashes the ie5.5 installer :-( . The native dll does not return
* the four zeros. The value depends on the combination of the cab file and
* the destination path
* the destination path. It appears to be a pointer to an optional return struct.
* The IE6 installer derefs this value + 4. Contents currently unknown.
*/
dest->result2=0x130000;
dest->result2 = 0;
LocalFree(dir);