* advapi32.cc (AllocateLocallyUniqueId): Remove.

* fhandler_disk_file.cc (fhandler_base::open_fs): Replace call to
	AllocateLocallyUniqueId with call to NtAllocateLocallyUniqueId;
	* posix_ipc.cc (mq_open): Ditto.  Drop error handling for that call.
	(sem_open): Ditto.
This commit is contained in:
Corinna Vinschen
2011-04-28 08:15:56 +00:00
parent f97612978a
commit 41e9c14558
4 changed files with 11 additions and 18 deletions

View File

@@ -19,13 +19,6 @@ details. */
SetLastError (RtlNtStatusToDosError (status)); \
return NT_SUCCESS (status);
BOOL WINAPI
AllocateLocallyUniqueId (PLUID luid)
{
NTSTATUS status = NtAllocateLocallyUniqueId (luid);
DEFAULT_NTSTATUS_TO_BOOL_RETURN
}
BOOL WINAPI
AccessCheck (PSECURITY_DESCRIPTOR sd, HANDLE tok, DWORD access,
PGENERIC_MAPPING mapping, PPRIVILEGE_SET pset, LPDWORD psetlen,