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
073dd7dd
Commit
073dd7dd
authored
Sep 26, 2007
by
Peter Oberndorfer
Committed by
Alexandre Julliard
Sep 27, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: NtAreMappedFilesTheSame semi stub.
parent
2c061dba
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
2 deletions
+15
-2
ntdll.spec
dlls/ntdll/ntdll.spec
+2
-2
virtual.c
dlls/ntdll/virtual.c
+12
-0
winternl.h
include/winternl.h
+1
-0
No files found.
dlls/ntdll/ntdll.spec
View file @
073dd7dd
...
...
@@ -104,7 +104,7 @@
# @ stub NtAllocateUserPhysicalPages
@ stdcall NtAllocateUuids(ptr ptr ptr)
@ stdcall NtAllocateVirtualMemory(long ptr ptr ptr long long)
@ st
ub NtAreMappedFilesTheSame
@ st
dcall NtAreMappedFilesTheSame(ptr ptr)
# @ stub NtAssignProcessToJobObject
@ stub NtCallbackReturn
# @ stub NtCancelDeviceWakeupRequest
...
...
@@ -948,7 +948,7 @@
# @ stub ZwAllocateUserPhysicalPages
@ stdcall ZwAllocateUuids(ptr ptr ptr) NtAllocateUuids
@ stdcall ZwAllocateVirtualMemory(long ptr ptr ptr long long) NtAllocateVirtualMemory
@ st
ub Zw
AreMappedFilesTheSame
@ st
dcall ZwAreMappedFilesTheSame(ptr ptr) Nt
AreMappedFilesTheSame
# @ stub ZwAssignProcessToJobObject
@ stub ZwCallbackReturn
# @ stub ZwCancelDeviceWakeupRequest
...
...
dlls/ntdll/virtual.c
View file @
073dd7dd
...
...
@@ -2213,3 +2213,15 @@ NTSTATUS WINAPI NtWriteVirtualMemory( HANDLE process, void *addr, const void *bu
if
(
bytes_written
)
*
bytes_written
=
size
;
return
status
;
}
/***********************************************************************
* NtAreMappedFilesTheSame (NTDLL.@)
* ZwAreMappedFilesTheSame (NTDLL.@)
*/
NTSTATUS
WINAPI
NtAreMappedFilesTheSame
(
PVOID
addr1
,
PVOID
addr2
)
{
TRACE
(
"%p %p
\n
"
,
addr1
,
addr2
);
return
STATUS_NOT_SAME_DEVICE
;
}
include/winternl.h
View file @
073dd7dd
...
...
@@ -1775,6 +1775,7 @@ NTSTATUS WINAPI NtAlertThread(HANDLE ThreadHandle);
NTSTATUS
WINAPI
NtAllocateLocallyUniqueId
(
PLUID
lpLuid
);
NTSTATUS
WINAPI
NtAllocateUuids
(
PULARGE_INTEGER
,
PULONG
,
PULONG
);
NTSTATUS
WINAPI
NtAllocateVirtualMemory
(
HANDLE
,
PVOID
*
,
ULONG
,
SIZE_T
*
,
ULONG
,
ULONG
);
NTSTATUS
WINAPI
NtAreMappedFilesTheSame
(
PVOID
,
PVOID
);
NTSTATUS
WINAPI
NtCallbackReturn
(
PVOID
,
ULONG
,
NTSTATUS
);
NTSTATUS
WINAPI
NtCancelIoFile
(
HANDLE
,
PIO_STATUS_BLOCK
);
NTSTATUS
WINAPI
NtCancelTimer
(
HANDLE
,
BOOLEAN
*
);
...
...
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