Alexandre Julliard : ntoskrnl.exe: Add missing WINAPIs.

Alexandre Julliard julliard at winehq.org
Tue Oct 2 14:09:40 CDT 2012


Module: wine
Branch: master
Commit: b560c56f3f33d0048fc069a5b1938c2f2b0c7236
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=b560c56f3f33d0048fc069a5b1938c2f2b0c7236

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Tue Oct  2 18:37:28 2012 +0200

ntoskrnl.exe: Add missing WINAPIs.

---

 dlls/ntoskrnl.exe/ntoskrnl.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dlls/ntoskrnl.exe/ntoskrnl.c b/dlls/ntoskrnl.exe/ntoskrnl.c
index a127551..632cea5 100644
--- a/dlls/ntoskrnl.exe/ntoskrnl.c
+++ b/dlls/ntoskrnl.exe/ntoskrnl.c
@@ -1493,8 +1493,8 @@ PVOID WINAPI MmMapIoSpace( PHYSICAL_ADDRESS PhysicalAddress, DWORD NumberOfBytes
 /***********************************************************************
  *           MmMapLockedPagesSpecifyCache  (NTOSKRNL.EXE.@)
  */
-PVOID MmMapLockedPagesSpecifyCache(PMDLX MemoryDescriptorList, KPROCESSOR_MODE AccessMode, MEMORY_CACHING_TYPE CacheType,
-                                   PVOID BaseAddress, ULONG BugCheckOnFailure, MM_PAGE_PRIORITY Priority)
+PVOID WINAPI  MmMapLockedPagesSpecifyCache(PMDLX MemoryDescriptorList, KPROCESSOR_MODE AccessMode, MEMORY_CACHING_TYPE CacheType,
+                                           PVOID BaseAddress, ULONG BugCheckOnFailure, MM_PAGE_PRIORITY Priority)
 {
     FIXME("(%p, %u, %u, %p, %u, %u): stub\n", MemoryDescriptorList, AccessMode, CacheType, BaseAddress, BugCheckOnFailure, Priority);
 
@@ -1515,7 +1515,7 @@ PVOID WINAPI MmPageEntireDriver(PVOID AddrInSection)
 /***********************************************************************
  *           MmProbeAndLockPages  (NTOSKRNL.EXE.@)
  */
-void MmProbeAndLockPages(PMDLX MemoryDescriptorList, KPROCESSOR_MODE AccessMode, LOCK_OPERATION Operation)
+void WINAPI MmProbeAndLockPages(PMDLX MemoryDescriptorList, KPROCESSOR_MODE AccessMode, LOCK_OPERATION Operation)
 {
     FIXME("(%p, %u, %u): stub\n", MemoryDescriptorList, AccessMode, Operation);
 }
@@ -1533,7 +1533,7 @@ void WINAPI MmResetDriverPaging(PVOID AddrInSection)
 /***********************************************************************
  *           MmUnlockPages  (NTOSKRNL.EXE.@)
  */
-void MmUnlockPages(PMDLX MemoryDescriptorList)
+void WINAPI  MmUnlockPages(PMDLX MemoryDescriptorList)
 {
     FIXME("(%p): stub\n", MemoryDescriptorList);
 }




More information about the wine-cvs mailing list