kernel32: Add stubs for several SRW lock functions.
This commit is contained in:
parent
f2c33ae17a
commit
3f1b41ebb2
|
@ -133,6 +133,8 @@
|
||||||
|
|
||||||
# functions exported by name, ordinal doesn't matter
|
# functions exported by name, ordinal doesn't matter
|
||||||
|
|
||||||
|
@ stdcall AcquireSRWLockExclusive(ptr)
|
||||||
|
@ stdcall AcquireSRWLockShared(ptr)
|
||||||
@ stdcall ActivateActCtx(ptr ptr)
|
@ stdcall ActivateActCtx(ptr ptr)
|
||||||
@ stdcall AddAtomA(str)
|
@ stdcall AddAtomA(str)
|
||||||
@ stdcall AddAtomW(wstr)
|
@ stdcall AddAtomW(wstr)
|
||||||
|
@ -733,6 +735,7 @@
|
||||||
@ stdcall IdnToNameprepUnicode(long wstr long ptr long)
|
@ stdcall IdnToNameprepUnicode(long wstr long ptr long)
|
||||||
@ stdcall IdnToUnicode(long wstr long ptr long)
|
@ stdcall IdnToUnicode(long wstr long ptr long)
|
||||||
@ stdcall InitAtomTable(long)
|
@ stdcall InitAtomTable(long)
|
||||||
|
@ stdcall InitializeSRWLock(ptr)
|
||||||
@ stdcall InitializeCriticalSection(ptr)
|
@ stdcall InitializeCriticalSection(ptr)
|
||||||
@ stdcall InitializeCriticalSectionAndSpinCount(ptr long)
|
@ stdcall InitializeCriticalSectionAndSpinCount(ptr long)
|
||||||
@ stdcall InitializeCriticalSectionEx(ptr long long)
|
@ stdcall InitializeCriticalSectionEx(ptr long long)
|
||||||
|
@ -995,6 +998,8 @@
|
||||||
@ stdcall ReleaseActCtx(ptr)
|
@ stdcall ReleaseActCtx(ptr)
|
||||||
@ stdcall ReleaseMutex(long)
|
@ stdcall ReleaseMutex(long)
|
||||||
@ stdcall ReleaseSemaphore(long long ptr)
|
@ stdcall ReleaseSemaphore(long long ptr)
|
||||||
|
@ stdcall ReleaseSRWLockExclusive(ptr)
|
||||||
|
@ stdcall ReleaseSRWLockShared(ptr)
|
||||||
@ stdcall RemoveDirectoryA(str)
|
@ stdcall RemoveDirectoryA(str)
|
||||||
@ stdcall RemoveDirectoryW(wstr)
|
@ stdcall RemoveDirectoryW(wstr)
|
||||||
# @ stub RemoveLocalAlternateComputerNameA
|
# @ stub RemoveLocalAlternateComputerNameA
|
||||||
|
|
|
@ -825,3 +825,43 @@ BOOL WINAPI GetThreadPreferredUILanguages( DWORD flags, PULONG count, PCZZWSTR b
|
||||||
*buffersize = 0;
|
*buffersize = 0;
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
* InitializeSRWLock (KERNEL32.@)
|
||||||
|
*/
|
||||||
|
VOID WINAPI InitializeSRWLock( PSRWLOCK srwlock )
|
||||||
|
{
|
||||||
|
FIXME( "(%p): stub\n", srwlock );
|
||||||
|
}
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
* AcquireSRWLockExclusive (KERNEL32.@)
|
||||||
|
*/
|
||||||
|
VOID WINAPI AcquireSRWLockExclusive( PSRWLOCK srwlock )
|
||||||
|
{
|
||||||
|
FIXME( "(%p): stub\n", srwlock );
|
||||||
|
}
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
* ReleaseSRWLockExclusive (KERNEL32.@)
|
||||||
|
*/
|
||||||
|
VOID WINAPI ReleaseSRWLockExclusive( PSRWLOCK srwlock )
|
||||||
|
{
|
||||||
|
FIXME( "(%p): stub\n", srwlock );
|
||||||
|
}
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
* AcquireSRWLockShared (KERNEL32.@)
|
||||||
|
*/
|
||||||
|
VOID WINAPI AcquireSRWLockShared( PSRWLOCK srwlock )
|
||||||
|
{
|
||||||
|
FIXME( "(%p): stub\n", srwlock );
|
||||||
|
}
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
* ReleaseSRWLockShared (KERNEL32.@)
|
||||||
|
*/
|
||||||
|
VOID WINAPI ReleaseSRWLockShared( PSRWLOCK srwlock )
|
||||||
|
{
|
||||||
|
FIXME( "(%p): stub\n", srwlock );
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue