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
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