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
fbbd9154
Commit
fbbd9154
authored
Jun 18, 2007
by
James Hawkins
Committed by
Alexandre Julliard
Jun 19, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntoskrnl.exe: Add a stub implementation of KeInitializeTimer.
parent
c46cacc8
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
1 deletion
+18
-1
ntoskrnl.c
dlls/ntoskrnl.exe/ntoskrnl.c
+9
-0
ntoskrnl.exe.spec
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
+1
-1
wdm.h
include/ddk/wdm.h
+8
-0
No files found.
dlls/ntoskrnl.exe/ntoskrnl.c
View file @
fbbd9154
...
...
@@ -419,6 +419,15 @@ void WINAPI ExFreePoolWithTag( void *ptr, ULONG tag )
/***********************************************************************
* KeInitializeTimer (NTOSKRNL.EXE.@)
*/
void
WINAPI
KeInitializeTimer
(
PKTIMER
Timer
)
{
FIXME
(
"%p
\n
"
,
Timer
);
}
/***********************************************************************
* KeQuerySystemTime (NTOSKRNL.EXE.@)
*/
void
WINAPI
KeQuerySystemTime
(
LARGE_INTEGER
*
time
)
...
...
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
View file @
fbbd9154
...
...
@@ -553,7 +553,7 @@
@ stub KeInitializeQueue
@ stub KeInitializeSemaphore
@ stub KeInitializeSpinLock
@ st
ub KeInitializeTimer
@ st
dcall KeInitializeTimer(ptr)
@ stub KeInitializeTimerEx
@ stub KeInsertByKeyDeviceQueue
@ stub KeInsertDeviceQueue
...
...
include/ddk/wdm.h
View file @
fbbd9154
...
...
@@ -780,6 +780,14 @@ typedef struct _MDL {
ULONG
ByteOffset
;
}
MDL
,
*
PMDL
;
typedef
struct
_KTIMER
{
DISPATCHER_HEADER
Header
;
ULARGE_INTEGER
DueTime
;
LIST_ENTRY
TimerListEntry
;
struct
_KDPC
*
Dpc
;
LONG
Period
;
}
KTIMER
,
*
PKTIMER
;
typedef
struct
_KSYSTEM_TIME
{
ULONG
LowPart
;
LONG
High1Time
;
...
...
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