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
77f4c853
Commit
77f4c853
authored
Jun 27, 2010
by
Austin English
Committed by
Alexandre Julliard
Jun 28, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntoskrnl.exe: Add stub for MmAllocateContiguousMemorySpecifyCache:.
parent
dab1bbef
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
1 deletion
+24
-1
ntoskrnl.c
dlls/ntoskrnl.exe/ntoskrnl.c
+13
-0
ntoskrnl.exe.spec
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
+1
-1
wdm.h
include/ddk/wdm.h
+10
-0
No files found.
dlls/ntoskrnl.exe/ntoskrnl.c
View file @
77f4c853
...
...
@@ -1275,6 +1275,19 @@ PVOID WINAPI MmAllocateContiguousMemory( SIZE_T size, PHYSICAL_ADDRESS highest_v
}
/***********************************************************************
* MmAllocateContiguousMemorySpecifyCache (NTOSKRNL.EXE.@)
*/
PVOID
WINAPI
MmAllocateContiguousMemorySpecifyCache
(
SIZE_T
size
,
PHYSICAL_ADDRESS
lowest_valid_address
,
PHYSICAL_ADDRESS
highest_valid_address
,
PHYSICAL_ADDRESS
BoundaryAddressMultiple
,
MEMORY_CACHING_TYPE
CacheType
)
{
FIXME
(
": stub
\n
"
);
return
NULL
;
}
/***********************************************************************
* MmAllocatePagesForMdl (NTOSKRNL.EXE.@)
*/
PMDL
WINAPI
MmAllocatePagesForMdl
(
PHYSICAL_ADDRESS
lowaddress
,
PHYSICAL_ADDRESS
highaddress
,
...
...
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
View file @
77f4c853
...
...
@@ -656,7 +656,7 @@
@ stub MmAdjustWorkingSetSize
@ stub MmAdvanceMdl
@ stdcall MmAllocateContiguousMemory(long double)
@ st
ub MmAllocateContiguousMemorySpecifyCache
@ st
dcall MmAllocateContiguousMemorySpecifyCache(long double double double long)
@ stub MmAllocateMappingAddress
@ stdcall MmAllocateNonCachedMemory(long)
@ stdcall MmAllocatePagesForMdl(double double double long)
...
...
include/ddk/wdm.h
View file @
77f4c853
...
...
@@ -1035,6 +1035,16 @@ typedef struct _KUSER_SHARED_DATA {
}
DUMMYUNIONNAME
;
}
KSHARED_USER_DATA
,
*
PKSHARED_USER_DATA
;
typedef
enum
_MEMORY_CACHING_TYPE
{
MmNonCached
=
0
,
MmCached
=
1
,
MmWriteCombined
=
2
,
MmHardwareCoherentCached
=
3
,
MmNonCachedUnordered
=
4
,
MmUSWCCached
=
5
,
MmMaximumCacheType
=
6
}
MEMORY_CACHING_TYPE
;
typedef
enum
_MM_SYSTEM_SIZE
{
MmSmallSystem
,
...
...
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