Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
3f1b41eb
Commit
3f1b41eb
authored
Oct 12, 2011
by
Louis Lenders
Committed by
Alexandre Julliard
Oct 13, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Add stubs for several SRW lock functions.
parent
f2c33ae1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
45 additions
and
0 deletions
+45
-0
kernel32.spec
dlls/kernel32/kernel32.spec
+5
-0
thread.c
dlls/kernel32/thread.c
+40
-0
No files found.
dlls/kernel32/kernel32.spec
View file @
3f1b41eb
...
...
@@ -133,6 +133,8 @@
# functions exported by name, ordinal doesn't matter
@ stdcall AcquireSRWLockExclusive(ptr)
@ stdcall AcquireSRWLockShared(ptr)
@ stdcall ActivateActCtx(ptr ptr)
@ stdcall AddAtomA(str)
@ stdcall AddAtomW(wstr)
...
...
@@ -733,6 +735,7 @@
@ stdcall IdnToNameprepUnicode(long wstr long ptr long)
@ stdcall IdnToUnicode(long wstr long ptr long)
@ stdcall InitAtomTable(long)
@ stdcall InitializeSRWLock(ptr)
@ stdcall InitializeCriticalSection(ptr)
@ stdcall InitializeCriticalSectionAndSpinCount(ptr long)
@ stdcall InitializeCriticalSectionEx(ptr long long)
...
...
@@ -995,6 +998,8 @@
@ stdcall ReleaseActCtx(ptr)
@ stdcall ReleaseMutex(long)
@ stdcall ReleaseSemaphore(long long ptr)
@ stdcall ReleaseSRWLockExclusive(ptr)
@ stdcall ReleaseSRWLockShared(ptr)
@ stdcall RemoveDirectoryA(str)
@ stdcall RemoveDirectoryW(wstr)
# @ stub RemoveLocalAlternateComputerNameA
...
...
dlls/kernel32/thread.c
View file @
3f1b41eb
...
...
@@ -825,3 +825,43 @@ BOOL WINAPI GetThreadPreferredUILanguages( DWORD flags, PULONG count, PCZZWSTR b
*
buffersize
=
0
;
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
);
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment