Re: sti: add launch application registry

2010-01-18 Thread Alexandre Julliard
Damjan Jovanovic writes: > @@ -387,6 +387,7 @@ HKLM,%CurrentVersion%\Controls > Folder\PowerCfg,"LastID",,"5" > > HKLM,%CurrentVersion%\RunServices,"winemenubuilder",2,"%11%\winemenubuilder.exe > -a -r" > HKLM,%CurrentVersion%\Setup,"BootDir",,"%30%" > HKLM,%CurrentVersion%\Setup,"SharedDir

Re: sti: add launch application registry

2010-01-17 Thread Paul Vriens
On 01/17/2010 10:09 AM, Damjan Jovanovic wrote: +else +skip("No StiCreateInstanceW function\n"); Shouldn't that be a win_skip() ? Why don't you do something like: if (!pStiCreateInstanceW) { win_skip("No StiCreateInstanceW function\n"); return; } That