mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 09:13:01 +00:00
[KERNEL32]: Arch, next time hit "Save" before comitting.
svn path=/trunk/; revision=52794
This commit is contained in:
parent
fd601c6a41
commit
d99b2bd865
1 changed files with 7 additions and 7 deletions
|
@ -791,7 +791,7 @@ CreateMutexA(IN LPSECURITY_ATTRIBUTES lpMutexAttributes OPTIONAL,
|
||||||
IN BOOL bInitialOwner,
|
IN BOOL bInitialOwner,
|
||||||
IN LPCSTR lpName OPTIONAL)
|
IN LPCSTR lpName OPTIONAL)
|
||||||
{
|
{
|
||||||
CreateNtObjectFromWin32Api(Mutex, lpMutexAttributes, bInitialOwner, lpName);
|
ConvertWin32AnsiObjectApiToUnicodeApi(Mutex, lpName, lpMutexAttributes, bInitialOwner);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -803,10 +803,10 @@ CreateMutexW(IN LPSECURITY_ATTRIBUTES lpMutexAttributes OPTIONAL,
|
||||||
IN BOOL bInitialOwner,
|
IN BOOL bInitialOwner,
|
||||||
IN LPCWSTR lpName OPTIONAL)
|
IN LPCWSTR lpName OPTIONAL)
|
||||||
{
|
{
|
||||||
CreateNtObjectFromWin32ApiW(Mutex, Mutant, MUTEX,
|
CreateNtObjectFromWin32Api(Mutex, Mutant, MUTEX,
|
||||||
lpMutexAttributes,
|
lpMutexAttributes,
|
||||||
bInitialOwner,
|
lpName,
|
||||||
lpName);
|
bInitialOwner);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -818,7 +818,7 @@ OpenMutexA(IN DWORD dwDesiredAccess,
|
||||||
IN BOOL bInheritHandle,
|
IN BOOL bInheritHandle,
|
||||||
IN LPCSTR lpName)
|
IN LPCSTR lpName)
|
||||||
{
|
{
|
||||||
OpenNtObjectFromWin32Api(Mutex, dwDesiredAccess, bInheritHandle, lpName);
|
ConvertOpenWin32AnsiObjectApiToUnicodeApi(Mutex, dwDesiredAccess, bInheritHandle, lpName);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -830,7 +830,7 @@ OpenMutexW(IN DWORD dwDesiredAccess,
|
||||||
IN BOOL bInheritHandle,
|
IN BOOL bInheritHandle,
|
||||||
IN LPCWSTR lpName)
|
IN LPCWSTR lpName)
|
||||||
{
|
{
|
||||||
OpenNtObjectFromWin32ApiW(Mutant, dwDesiredAccess, bInheritHandle, lpName);
|
OpenNtObjectFromWin32Api(Mutant, dwDesiredAccess, bInheritHandle, lpName);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue