17 Jan
2010
17 Jan
'10
4:24 a.m.
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 way you also get rid of one level of indentation for the big block. -- Cheers, Paul.