31 Oct
2006
31 Oct
'06
1:58 a.m.
James Hawkins wrote:
+ /* Crashes on Win2K st = pAcquireCredentialsHandleA(NULL, unisp_name_a, 0, NULL, NULL, NULL, NULL, NULL, NULL); ok(st == SEC_E_NO_CREDENTIALS, "Expected SEC_E_NO_CREDENTIALS, got %08x\n", st); + */
Please use #if 0/#endif to comment out pieces of code.
Or even better use if (0) { } so compile problems don't creep in... Mike