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
a5156dcf
Commit
a5156dcf
authored
Aug 18, 2005
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added a stub for NtAlertResumeThread.
parent
942dc561
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
11 deletions
+24
-11
nt.c
dlls/ntdll/nt.c
+0
-9
ntdll.spec
dlls/ntdll/ntdll.spec
+2
-2
thread.c
dlls/ntdll/thread.c
+22
-0
No files found.
dlls/ntdll/nt.c
View file @
a5156dcf
...
...
@@ -1068,12 +1068,3 @@ ULONGLONG WINAPI VerSetConditionMask( ULONGLONG dwlConditionMask, DWORD dwTypeBi
dwlConditionMask
|=
dwConditionMask
<<
0
*
3
;
return
dwlConditionMask
;
}
/******************************************************************************
* NtAlertThread (NTDLL.@)
*/
NTSTATUS
WINAPI
NtAlertThread
(
HANDLE
ThreadHandle
)
{
FIXME
(
"%p
\n
"
,
ThreadHandle
);
return
STATUS_NOT_IMPLEMENTED
;
}
dlls/ntdll/ntdll.spec
View file @
a5156dcf
...
...
@@ -101,7 +101,7 @@
# @ stub NtAddBootEntry
@ stdcall NtAdjustGroupsToken(long long ptr long ptr ptr)
@ stdcall NtAdjustPrivilegesToken(long long long long long long)
@ st
ub NtAlertResumeThread
@ st
dcall NtAlertResumeThread(long ptr)
@ stdcall NtAlertThread(long)
@ stdcall NtAllocateLocallyUniqueId(ptr)
# @ stub NtAllocateUserPhysicalPages
...
...
@@ -946,7 +946,7 @@
# @ stub ZwAddBootEntry
@ stdcall ZwAdjustGroupsToken(long long long long long long) NtAdjustGroupsToken
@ stdcall ZwAdjustPrivilegesToken(long long long long long long) NtAdjustPrivilegesToken
@ st
ub Zw
AlertResumeThread
@ st
dcall ZwAlertResumeThread(long ptr) Nt
AlertResumeThread
@ stdcall ZwAlertThread(long) NtAlertThread
@ stdcall ZwAllocateLocallyUniqueId(ptr) NtAllocateLocallyUniqueId
# @ stub ZwAllocateUserPhysicalPages
...
...
dlls/ntdll/thread.c
View file @
a5156dcf
...
...
@@ -400,6 +400,28 @@ NTSTATUS WINAPI NtResumeThread( HANDLE handle, PULONG count )
/******************************************************************************
* NtAlertResumeThread (NTDLL.@)
* ZwAlertResumeThread (NTDLL.@)
*/
NTSTATUS
WINAPI
NtAlertResumeThread
(
HANDLE
handle
,
PULONG
count
)
{
FIXME
(
"stub: should alert thread %p
\n
"
,
handle
);
return
NtResumeThread
(
handle
,
count
);
}
/******************************************************************************
* NtAlertThread (NTDLL.@)
* ZwAlertThread (NTDLL.@)
*/
NTSTATUS
WINAPI
NtAlertThread
(
HANDLE
handle
)
{
FIXME
(
"stub: %p
\n
"
,
handle
);
return
STATUS_NOT_IMPLEMENTED
;
}
/******************************************************************************
* NtTerminateThread (NTDLL.@)
* ZwTerminateThread (NTDLL.@)
*/
...
...
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