On 12/01/2009 08:44 AM, Alexandre Hardy wrote:
- length = (*pGetLongPathNameW)(unc_path,NULL,0);
Why the brackets around *pGetLongPathNameW?
- ok(length>0,"GetLongPathNameA: Failed on UNC Pathname (length=%d)\n",length);
You called the W-function so the ok text needs to be adjusted. You also know the length so why not check explicitly?