Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
43b7f268
Commit
43b7f268
authored
Dec 28, 2008
by
Christian Costa
Committed by
Alexandre Julliard
Dec 29, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntoskrnl.exe: Add stub for PsSetCreateThreadNotifyRoutine.
parent
9a95c077
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
1 deletion
+13
-1
ntoskrnl.c
dlls/ntoskrnl.exe/ntoskrnl.c
+12
-0
ntoskrnl.exe.spec
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
+1
-1
No files found.
dlls/ntoskrnl.exe/ntoskrnl.c
View file @
43b7f268
...
@@ -54,6 +54,7 @@ typedef struct _KSERVICE_TABLE_DESCRIPTOR
...
@@ -54,6 +54,7 @@ typedef struct _KSERVICE_TABLE_DESCRIPTOR
KSERVICE_TABLE_DESCRIPTOR
KeServiceDescriptorTable
[
4
]
=
{
{
0
}
};
KSERVICE_TABLE_DESCRIPTOR
KeServiceDescriptorTable
[
4
]
=
{
{
0
}
};
typedef
void
(
WINAPI
*
PCREATE_PROCESS_NOTIFY_ROUTINE
)(
HANDLE
,
HANDLE
,
BOOLEAN
);
typedef
void
(
WINAPI
*
PCREATE_PROCESS_NOTIFY_ROUTINE
)(
HANDLE
,
HANDLE
,
BOOLEAN
);
typedef
void
(
WINAPI
*
PCREATE_THREAD_NOTIFY_ROUTINE
)(
HANDLE
,
HANDLE
,
BOOLEAN
);
static
struct
list
Irps
=
LIST_INIT
(
Irps
);
static
struct
list
Irps
=
LIST_INIT
(
Irps
);
...
@@ -1110,6 +1111,17 @@ NTSTATUS WINAPI PsSetCreateProcessNotifyRoutine( PCREATE_PROCESS_NOTIFY_ROUTINE
...
@@ -1110,6 +1111,17 @@ NTSTATUS WINAPI PsSetCreateProcessNotifyRoutine( PCREATE_PROCESS_NOTIFY_ROUTINE
return
STATUS_SUCCESS
;
return
STATUS_SUCCESS
;
}
}
/***********************************************************************
* PsSetCreateThreadNotifyRoutine (NTOSKRNL.EXE.@)
*/
NTSTATUS
WINAPI
PsSetCreateThreadNotifyRoutine
(
PCREATE_THREAD_NOTIFY_ROUTINE
NotifyRoutine
)
{
FIXME
(
"stub: %p
\n
"
,
NotifyRoutine
);
return
STATUS_SUCCESS
;
}
/***********************************************************************
/***********************************************************************
* MmGetSystemRoutineAddress (NTOSKRNL.EXE.@)
* MmGetSystemRoutineAddress (NTOSKRNL.EXE.@)
*/
*/
...
...
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
View file @
43b7f268
...
@@ -908,7 +908,7 @@
...
@@ -908,7 +908,7 @@
@ stub PsRevertToSelf
@ stub PsRevertToSelf
@ stub PsSetContextThread
@ stub PsSetContextThread
@ stdcall PsSetCreateProcessNotifyRoutine(ptr long)
@ stdcall PsSetCreateProcessNotifyRoutine(ptr long)
@ st
ub PsSetCreateThreadNotifyRoutine
@ st
dcall PsSetCreateThreadNotifyRoutine(ptr)
@ stub PsSetJobUIRestrictionsClass
@ stub PsSetJobUIRestrictionsClass
@ stub PsSetLegoNotifyRoutine
@ stub PsSetLegoNotifyRoutine
@ stub PsSetLoadImageNotifyRoutine
@ stub PsSetLoadImageNotifyRoutine
...
...
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