ok(!ret&&GetLastError()==ERROR_INSUFFICIENT_BUFFER,"InitializeAcl with too small a buffer should have failed with ERROR_INSUFFICIENT_BUFFER instead of %d\n",GetLastError());
SetLastError(0xdeadbeef);
ret=InitializeAcl(pAcl,0xffffffff,ACL_REVISION);
ok(!ret&&GetLastError()==ERROR_INVALID_PARAMETER,"InitializeAcl with too large a buffer should have failed with ERROR_INVALID_PARAMETER instead of %d\n",GetLastError());
ok(!ret&&GetLastError()==ERROR_INVALID_PARAMETER,"InitializeAcl(ACL_REVISION1) should have failed with ERROR_INVALID_PARAMETER instead of %d\n",GetLastError());