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
dd5abc2d
Commit
dd5abc2d
authored
Dec 30, 2009
by
Stefan Leichter
Committed by
Alexandre Julliard
Dec 31, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntoskrnl.exe: Add stub for KeGetCurrentThread/PsGetCurrentThread.
parent
f06cb3e6
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
3 deletions
+12
-3
ntoskrnl.c
dlls/ntoskrnl.exe/ntoskrnl.c
+9
-0
ntoskrnl.exe.spec
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
+2
-2
wdm.h
include/ddk/wdm.h
+1
-1
No files found.
dlls/ntoskrnl.exe/ntoskrnl.c
View file @
dd5abc2d
...
@@ -961,6 +961,15 @@ NTSTATUS WINAPI FsRtlRegisterUncProvider(PHANDLE MupHandle, PUNICODE_STRING Redi
...
@@ -961,6 +961,15 @@ NTSTATUS WINAPI FsRtlRegisterUncProvider(PHANDLE MupHandle, PUNICODE_STRING Redi
}
}
/***********************************************************************
/***********************************************************************
* KeGetCurrentThread / PsGetCurrentThread (NTOSKRNL.EXE.@)
*/
PRKTHREAD
WINAPI
KeGetCurrentThread
(
void
)
{
FIXME
(
"() stub
\n
"
);
return
NULL
;
}
/***********************************************************************
* KeInitializeEvent (NTOSKRNL.EXE.@)
* KeInitializeEvent (NTOSKRNL.EXE.@)
*/
*/
void
WINAPI
KeInitializeEvent
(
PRKEVENT
Event
,
EVENT_TYPE
Type
,
BOOLEAN
State
)
void
WINAPI
KeInitializeEvent
(
PRKEVENT
Event
,
EVENT_TYPE
Type
,
BOOLEAN
State
)
...
...
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
View file @
dd5abc2d
...
@@ -529,7 +529,7 @@
...
@@ -529,7 +529,7 @@
@ stub KeFindConfigurationNextEntry
@ stub KeFindConfigurationNextEntry
@ stub KeFlushEntireTb
@ stub KeFlushEntireTb
@ stub KeFlushQueuedDpcs
@ stub KeFlushQueuedDpcs
@ st
ub KeGetCurrentThread
@ st
dcall KeGetCurrentThread()
@ stub KeGetPreviousMode
@ stub KeGetPreviousMode
@ stub KeGetRecommendedSharedDataAlignment
@ stub KeGetRecommendedSharedDataAlignment
@ stub KeI386AbiosCall
@ stub KeI386AbiosCall
...
@@ -852,7 +852,7 @@
...
@@ -852,7 +852,7 @@
@ stub PsGetCurrentProcess
@ stub PsGetCurrentProcess
@ stdcall PsGetCurrentProcessId()
@ stdcall PsGetCurrentProcessId()
@ stub PsGetCurrentProcessSessionId
@ stub PsGetCurrentProcessSessionId
@ st
ub Ps
GetCurrentThread
@ st
dcall PsGetCurrentThread() Ke
GetCurrentThread
@ stdcall PsGetCurrentThreadId()
@ stdcall PsGetCurrentThreadId()
@ stub PsGetCurrentThreadPreviousMode
@ stub PsGetCurrentThreadPreviousMode
@ stub PsGetCurrentThreadStackBase
@ stub PsGetCurrentThreadStackBase
...
...
include/ddk/wdm.h
View file @
dd5abc2d
...
@@ -134,7 +134,7 @@ typedef struct _IO_TIMER *PIO_TIMER;
...
@@ -134,7 +134,7 @@ typedef struct _IO_TIMER *PIO_TIMER;
typedef
struct
_IO_TIMER_ROUTINE
*
PIO_TIMER_ROUTINE
;
typedef
struct
_IO_TIMER_ROUTINE
*
PIO_TIMER_ROUTINE
;
typedef
struct
_ETHREAD
*
PETHREAD
;
typedef
struct
_ETHREAD
*
PETHREAD
;
typedef
struct
_FREE_FUNCTION
*
PFREE_FUNCTION
;
typedef
struct
_FREE_FUNCTION
*
PFREE_FUNCTION
;
typedef
struct
_KTHREAD
*
PKTHREAD
;
typedef
struct
_KTHREAD
*
PKTHREAD
,
*
PRKTHREAD
;
typedef
struct
_EPROCESS
*
PEPROCESS
;
typedef
struct
_EPROCESS
*
PEPROCESS
;
typedef
struct
_ERESOURCE
*
PERESOURCE
;
typedef
struct
_ERESOURCE
*
PERESOURCE
;
typedef
struct
_IO_WORKITEM
*
PIO_WORKITEM
;
typedef
struct
_IO_WORKITEM
*
PIO_WORKITEM
;
...
...
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