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
a2f6bac1
Commit
a2f6bac1
authored
Jun 15, 2009
by
Anders Jonsson
Committed by
Alexandre Julliard
Jun 16, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntoskrnl.exe: Stub for ExInitializeNPagedLookasideList.
parent
4e4d477c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
1 deletion
+19
-1
ntoskrnl.c
dlls/ntoskrnl.exe/ntoskrnl.c
+15
-0
ntoskrnl.exe.spec
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
+1
-1
wdm.h
include/ddk/wdm.h
+3
-0
No files found.
dlls/ntoskrnl.exe/ntoskrnl.c
View file @
a2f6bac1
...
...
@@ -909,6 +909,21 @@ NTSTATUS WINAPI ExInitializeResourceLite(PERESOURCE Resource)
/***********************************************************************
* ExInitializeNPagedLookasideList (NTOSKRNL.EXE.@)
*/
void
WINAPI
ExInitializeNPagedLookasideList
(
PNPAGED_LOOKASIDE_LIST
Lookaside
,
PALLOCATE_FUNCTION
Allocate
,
PFREE_FUNCTION
Free
,
ULONG
Flags
,
SIZE_T
Size
,
ULONG
Tag
,
USHORT
Depth
)
{
FIXME
(
"stub: %p, %p, %p, %u, %lu, %u, %u
\n
"
,
Lookaside
,
Allocate
,
Free
,
Flags
,
Size
,
Tag
,
Depth
);
}
/***********************************************************************
* ExInitializeZone (NTOSKRNL.EXE.@)
*/
NTSTATUS
WINAPI
ExInitializeZone
(
PZONE_HEADER
Zone
,
...
...
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
View file @
a2f6bac1
...
...
@@ -139,7 +139,7 @@
@ stub ExGetExclusiveWaiterCount
@ stub ExGetPreviousMode
@ stub ExGetSharedWaiterCount
@ st
ub ExInitializeNPagedLookasideList
@ st
dcall ExInitializeNPagedLookasideList(ptr ptr ptr long long long long)
@ stub ExInitializePagedLookasideList
@ stdcall ExInitializeResourceLite(ptr)
@ stdcall ExInitializeZone(ptr long ptr long)
...
...
include/ddk/wdm.h
View file @
a2f6bac1
...
...
@@ -124,13 +124,16 @@ typedef enum _KWAIT_REASON
MaximumWaitReason
,
}
KWAIT_REASON
;
typedef
struct
_ALLOCATE_FUNCTION
*
PALLOCATE_FUNCTION
;
typedef
struct
_IO_TIMER
*
PIO_TIMER
;
typedef
struct
_IO_TIMER_ROUTINE
*
PIO_TIMER_ROUTINE
;
typedef
struct
_ETHREAD
*
PETHREAD
;
typedef
struct
_FREE_FUNCTION
*
PFREE_FUNCTION
;
typedef
struct
_KTHREAD
*
PKTHREAD
;
typedef
struct
_EPROCESS
*
PEPROCESS
;
typedef
struct
_ERESOURCE
*
PERESOURCE
;
typedef
struct
_IO_WORKITEM
*
PIO_WORKITEM
;
typedef
struct
_NPAGED_LOOKASIDE_LIST
*
PNPAGED_LOOKASIDE_LIST
;
typedef
struct
_OBJECT_TYPE
*
POBJECT_TYPE
;
typedef
struct
_OBJECT_HANDLE_INFORMATION
*
POBJECT_HANDLE_INFORMATION
;
typedef
struct
_ZONE_HEADER
*
PZONE_HEADER
;
...
...
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