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
d8c6a119
Commit
d8c6a119
authored
Mar 19, 2014
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Mar 19, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntoskrnl.exe: Add stub KeInsertQueue.
parent
ba138930
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
42 additions
and
1 deletion
+42
-1
ntoskrnl.c
dlls/ntoskrnl.exe/ntoskrnl.c
+9
-0
ntoskrnl.exe.spec
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
+1
-1
Makefile.in
include/Makefile.in
+1
-0
ntifs.h
include/ddk/ntifs.h
+31
-0
No files found.
dlls/ntoskrnl.exe/ntoskrnl.c
View file @
d8c6a119
...
...
@@ -34,6 +34,7 @@
#include "excpt.h"
#include "winioctl.h"
#include "ddk/ntddk.h"
#include "ddk/ntifs.h"
#include "wine/unicode.h"
#include "wine/server.h"
#include "wine/list.h"
...
...
@@ -1287,6 +1288,14 @@ void WINAPI KeInitializeTimer( PKTIMER Timer )
KeInitializeTimerEx
(
Timer
,
NotificationTimer
);
}
/***********************************************************************
* KeInsertQueue (NTOSKRNL.EXE.@)
*/
LONG
WINAPI
KeInsertQueue
(
PRKQUEUE
Queue
,
PLIST_ENTRY
Entry
)
{
FIXME
(
"stub: %p %p
\n
"
,
Queue
,
Entry
);
return
0
;
}
/**********************************************************************
* KeQueryActiveProcessors (NTOSKRNL.EXE.@)
...
...
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
View file @
d8c6a119
...
...
@@ -558,7 +558,7 @@
@ stub KeInsertByKeyDeviceQueue
@ stub KeInsertDeviceQueue
@ stub KeInsertHeadQueue
@ st
ub KeInsertQueue
@ st
dcall KeInsertQueue(ptr ptr)
@ stub KeInsertQueueApc
@ stub KeInsertQueueDpc
@ stub KeIsAttachedProcess
...
...
include/Makefile.in
View file @
d8c6a119
...
...
@@ -244,6 +244,7 @@ SRCDIR_INCLUDES = \
ddk/ntddk.h
\
ddk/ntddser.h
\
ddk/ntddtape.h
\
ddk/ntifs.h
\
ddk/usb.h
\
ddk/usb100.h
\
ddk/usb200.h
\
...
...
include/ddk/ntifs.h
0 → 100644
View file @
d8c6a119
/*
* Copyright (C) 2014 Alistair Leslie-Hughes
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#ifndef __NTIFS_H__
#define __NTIFS_H__
typedef
struct
_KQUEUE
{
DISPATCHER_HEADER
Header
;
LIST_ENTRY
EntryListHead
;
volatile
ULONG
CurrentCount
;
ULONG
MaximumCount
;
LIST_ENTRY
ThreadListHead
;
}
KQUEUE
,
*
PKQUEUE
,
*
RESTRICTED_POINTER
PRKQUEUE
;
#endif
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