wordpad: Merge accelerators into the main resource file.
[wine/multimedia.git] / dlls / kernel32 / virtual.c
blob949ceb58bc104cec9029a9a0ef8a94b26eb1a270
1 /*
2 * Win32 virtual memory functions
4 * Copyright 1997 Alexandre Julliard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #include "config.h"
22 #include "wine/port.h"
24 #include <fcntl.h>
25 #include <stdarg.h>
26 #include <stdlib.h>
27 #include <string.h>
28 #include <sys/types.h>
29 #ifdef HAVE_UNISTD_H
30 # include <unistd.h>
31 #endif
33 #define NONAMELESSUNION
34 #define NONAMELESSSTRUCT
35 #include "ntstatus.h"
36 #define WIN32_NO_STATUS
37 #include "windef.h"
38 #include "winbase.h"
39 #include "winnls.h"
40 #include "winternl.h"
41 #include "winerror.h"
42 #include "psapi.h"
43 #include "wine/exception.h"
44 #include "wine/debug.h"
46 #include "kernel_private.h"
48 WINE_DECLARE_DEBUG_CHANNEL(seh);
49 WINE_DECLARE_DEBUG_CHANNEL(file);
51 static unsigned int page_size;
54 /***********************************************************************
55 * VirtualAlloc (KERNEL32.@)
57 * Reserves or commits a region of pages in virtual address space.
59 * PARAMS
60 * addr [I] Address of region to reserve or commit.
61 * size [I] Size of region.
62 * type [I] Type of allocation.
63 * protect [I] Type of access protection.
65 * RETURNS
66 * Success: Base address of allocated region of pages.
67 * Failure: NULL.
69 LPVOID WINAPI VirtualAlloc( LPVOID addr, SIZE_T size, DWORD type, DWORD protect )
71 return VirtualAllocEx( GetCurrentProcess(), addr, size, type, protect );
75 /***********************************************************************
76 * VirtualAllocEx (KERNEL32.@)
78 * Seems to be just as VirtualAlloc, but with process handle.
80 * PARAMS
81 * hProcess [I] Handle to process to do mem operation.
82 * addr [I] Address of region to reserve or commit.
83 * size [I] Size of region.
84 * type [I] Type of allocation.
85 * protect [I] Type of access protection.
88 * RETURNS
89 * Success: Base address of allocated region of pages.
90 * Failure: NULL.
92 LPVOID WINAPI VirtualAllocEx( HANDLE hProcess, LPVOID addr, SIZE_T size,
93 DWORD type, DWORD protect )
95 LPVOID ret = addr;
96 NTSTATUS status;
98 if ((status = NtAllocateVirtualMemory( hProcess, &ret, 0, &size, type, protect )))
100 SetLastError( RtlNtStatusToDosError(status) );
101 ret = NULL;
103 return ret;
107 /***********************************************************************
108 * VirtualFree (KERNEL32.@)
110 * Releases or decommits a region of pages in virtual address space.
112 * PARAMS
113 * addr [I] Address of region of committed pages.
114 * size [I] Size of region.
115 * type [I] Type of operation.
117 * RETURNS
118 * Success: TRUE.
119 * Failure: FALSE.
121 BOOL WINAPI VirtualFree( LPVOID addr, SIZE_T size, DWORD type )
123 return VirtualFreeEx( GetCurrentProcess(), addr, size, type );
127 /***********************************************************************
128 * VirtualFreeEx (KERNEL32.@)
130 * Releases or decommits a region of pages in virtual address space.
132 * PARAMS
133 * process [I] Handle to process.
134 * addr [I] Address of region to free.
135 * size [I] Size of region.
136 * type [I] Type of operation.
138 * RETURNS
139 * Success: TRUE.
140 * Failure: FALSE.
142 BOOL WINAPI VirtualFreeEx( HANDLE process, LPVOID addr, SIZE_T size, DWORD type )
144 NTSTATUS status = NtFreeVirtualMemory( process, &addr, &size, type );
145 if (status) SetLastError( RtlNtStatusToDosError(status) );
146 return !status;
150 /***********************************************************************
151 * VirtualLock (KERNEL32.@)
153 * Locks the specified region of virtual address space.
155 * PARAMS
156 * addr [I] Address of first byte of range to lock.
157 * size [I] Number of bytes in range to lock.
159 * RETURNS
160 * Success: TRUE.
161 * Failure: FALSE.
163 * NOTES
164 * Always returns TRUE.
167 BOOL WINAPI VirtualLock( LPVOID addr, SIZE_T size )
169 NTSTATUS status = NtLockVirtualMemory( GetCurrentProcess(), &addr, &size, 1 );
170 if (status) SetLastError( RtlNtStatusToDosError(status) );
171 return !status;
175 /***********************************************************************
176 * VirtualUnlock (KERNEL32.@)
178 * Unlocks a range of pages in the virtual address space.
180 * PARAMS
181 * addr [I] Address of first byte of range.
182 * size [I] Number of bytes in range.
184 * RETURNS
185 * Success: TRUE.
186 * Failure: FALSE.
188 * NOTES
189 * Always returns TRUE.
192 BOOL WINAPI VirtualUnlock( LPVOID addr, SIZE_T size )
194 NTSTATUS status = NtUnlockVirtualMemory( GetCurrentProcess(), &addr, &size, 1 );
195 if (status) SetLastError( RtlNtStatusToDosError(status) );
196 return !status;
200 /***********************************************************************
201 * VirtualProtect (KERNEL32.@)
203 * Changes the access protection on a region of committed pages.
205 * PARAMS
206 * addr [I] Address of region of committed pages.
207 * size [I] Size of region.
208 * new_prot [I] Desired access protection.
209 * old_prot [O] Address of variable to get old protection.
211 * RETURNS
212 * Success: TRUE.
213 * Failure: FALSE.
215 BOOL WINAPI VirtualProtect( LPVOID addr, SIZE_T size, DWORD new_prot, LPDWORD old_prot)
217 return VirtualProtectEx( GetCurrentProcess(), addr, size, new_prot, old_prot );
221 /***********************************************************************
222 * VirtualProtectEx (KERNEL32.@)
224 * Changes the access protection on a region of committed pages in the
225 * virtual address space of a specified process.
227 * PARAMS
228 * process [I] Handle of process.
229 * addr [I] Address of region of committed pages.
230 * size [I] Size of region.
231 * new_prot [I] Desired access protection.
232 * old_prot [O] Address of variable to get old protection.
234 * RETURNS
235 * Success: TRUE.
236 * Failure: FALSE.
238 BOOL WINAPI VirtualProtectEx( HANDLE process, LPVOID addr, SIZE_T size,
239 DWORD new_prot, LPDWORD old_prot )
241 NTSTATUS status = NtProtectVirtualMemory( process, &addr, &size, new_prot, old_prot );
242 if (status) SetLastError( RtlNtStatusToDosError(status) );
243 return !status;
247 /***********************************************************************
248 * VirtualQuery (KERNEL32.@)
250 * Provides info about a range of pages in virtual address space.
252 * PARAMS
253 * addr [I] Address of region.
254 * info [O] Address of info buffer.
255 * len [I] Size of buffer.
257 * RETURNS
258 * Number of bytes returned in information buffer or 0 if
259 * addr >= 0xc0000000 (kernel space).
261 SIZE_T WINAPI VirtualQuery( LPCVOID addr, PMEMORY_BASIC_INFORMATION info,
262 SIZE_T len )
264 return VirtualQueryEx( GetCurrentProcess(), addr, info, len );
268 /***********************************************************************
269 * VirtualQueryEx (KERNEL32.@)
271 * Provides info about a range of pages in virtual address space of a
272 * specified process.
274 * PARAMS
275 * process [I] Handle to process.
276 * addr [I] Address of region.
277 * info [O] Address of info buffer.
278 * len [I] Size of buffer.
280 * RETURNS
281 * Number of bytes returned in information buffer.
283 SIZE_T WINAPI VirtualQueryEx( HANDLE process, LPCVOID addr,
284 PMEMORY_BASIC_INFORMATION info, SIZE_T len )
286 SIZE_T ret;
287 NTSTATUS status;
289 if ((status = NtQueryVirtualMemory( process, addr, MemoryBasicInformation, info, len, &ret )))
291 SetLastError( RtlNtStatusToDosError(status) );
292 ret = 0;
294 return ret;
298 /***********************************************************************
299 * CreateFileMappingA (KERNEL32.@)
301 * Creates a named or unnamed file-mapping object for the specified file.
303 * PARAMS
304 * hFile [I] Handle to the file to map.
305 * sa [I] Optional security attributes.
306 * protect [I] Protection for mapping object.
307 * size_high [I] High-order 32 bits of object size.
308 * size_low [I] Low-order 32 bits of object size.
309 * name [I] Name of file-mapping object.
311 * RETURNS
312 * Success: Handle.
313 * Failure: NULL. Mapping object does not exist.
315 HANDLE WINAPI CreateFileMappingA( HANDLE hFile, SECURITY_ATTRIBUTES *sa,
316 DWORD protect, DWORD size_high, DWORD size_low, LPCSTR name )
318 WCHAR buffer[MAX_PATH];
320 if (!name) return CreateFileMappingW( hFile, sa, protect, size_high, size_low, NULL );
322 if (!MultiByteToWideChar( CP_ACP, 0, name, -1, buffer, MAX_PATH ))
324 SetLastError( ERROR_FILENAME_EXCED_RANGE );
325 return 0;
327 return CreateFileMappingW( hFile, sa, protect, size_high, size_low, buffer );
331 /***********************************************************************
332 * CreateFileMappingW (KERNEL32.@)
334 * See CreateFileMappingA.
336 HANDLE WINAPI CreateFileMappingW( HANDLE hFile, LPSECURITY_ATTRIBUTES sa,
337 DWORD protect, DWORD size_high,
338 DWORD size_low, LPCWSTR name )
340 static const int sec_flags = SEC_FILE | SEC_IMAGE | SEC_RESERVE | SEC_COMMIT | SEC_NOCACHE;
342 HANDLE ret;
343 NTSTATUS status;
344 DWORD access, sec_type;
345 LARGE_INTEGER size;
347 sec_type = protect & sec_flags;
348 protect &= ~sec_flags;
349 if (!sec_type) sec_type = SEC_COMMIT;
351 /* Win9x compatibility */
352 if (!protect && (GetVersion() & 0x80000000)) protect = PAGE_READONLY;
354 switch(protect)
356 case PAGE_READONLY:
357 case PAGE_WRITECOPY:
358 access = STANDARD_RIGHTS_REQUIRED | SECTION_QUERY | SECTION_MAP_READ | SECTION_MAP_EXECUTE;
359 break;
360 case PAGE_READWRITE:
361 access = STANDARD_RIGHTS_REQUIRED | SECTION_QUERY | SECTION_MAP_READ | SECTION_MAP_WRITE | SECTION_MAP_EXECUTE;
362 break;
363 case PAGE_EXECUTE_READ:
364 case PAGE_EXECUTE_WRITECOPY:
365 access = STANDARD_RIGHTS_REQUIRED | SECTION_QUERY | SECTION_MAP_READ | SECTION_MAP_EXECUTE | SECTION_MAP_EXECUTE_EXPLICIT;
366 break;
367 case PAGE_EXECUTE_READWRITE:
368 access = STANDARD_RIGHTS_REQUIRED | SECTION_QUERY | SECTION_MAP_READ | SECTION_MAP_WRITE | SECTION_MAP_EXECUTE | SECTION_MAP_EXECUTE_EXPLICIT;
369 break;
370 default:
371 SetLastError( ERROR_INVALID_PARAMETER );
372 return 0;
375 if (hFile == INVALID_HANDLE_VALUE)
377 hFile = 0;
378 if (!size_low && !size_high)
380 SetLastError( ERROR_INVALID_PARAMETER );
381 return 0;
385 size.u.LowPart = size_low;
386 size.u.HighPart = size_high;
388 if (sa || name)
390 OBJECT_ATTRIBUTES attr;
391 UNICODE_STRING nameW;
393 attr.Length = sizeof(attr);
394 attr.RootDirectory = 0;
395 attr.ObjectName = NULL;
396 attr.Attributes = OBJ_OPENIF | ((sa && sa->bInheritHandle) ? OBJ_INHERIT : 0);
397 attr.SecurityDescriptor = sa ? sa->lpSecurityDescriptor : NULL;
398 attr.SecurityQualityOfService = NULL;
399 if (name)
401 RtlInitUnicodeString( &nameW, name );
402 attr.ObjectName = &nameW;
403 attr.RootDirectory = get_BaseNamedObjects_handle();
405 status = NtCreateSection( &ret, access, &attr, &size, protect, sec_type, hFile );
407 else status = NtCreateSection( &ret, access, NULL, &size, protect, sec_type, hFile );
409 if (status == STATUS_OBJECT_NAME_EXISTS)
410 SetLastError( ERROR_ALREADY_EXISTS );
411 else
412 SetLastError( RtlNtStatusToDosError(status) );
413 return ret;
417 /***********************************************************************
418 * OpenFileMappingA (KERNEL32.@)
420 * Opens a named file-mapping object.
422 * PARAMS
423 * access [I] Access mode.
424 * inherit [I] Inherit flag.
425 * name [I] Name of file-mapping object.
427 * RETURNS
428 * Success: Handle.
429 * Failure: NULL.
431 HANDLE WINAPI OpenFileMappingA( DWORD access, BOOL inherit, LPCSTR name )
433 WCHAR buffer[MAX_PATH];
435 if (!name) return OpenFileMappingW( access, inherit, NULL );
437 if (!MultiByteToWideChar( CP_ACP, 0, name, -1, buffer, MAX_PATH ))
439 SetLastError( ERROR_FILENAME_EXCED_RANGE );
440 return 0;
442 return OpenFileMappingW( access, inherit, buffer );
446 /***********************************************************************
447 * OpenFileMappingW (KERNEL32.@)
449 * See OpenFileMappingA.
451 HANDLE WINAPI OpenFileMappingW( DWORD access, BOOL inherit, LPCWSTR name)
453 OBJECT_ATTRIBUTES attr;
454 UNICODE_STRING nameW;
455 HANDLE ret;
456 NTSTATUS status;
458 if (!name)
460 SetLastError( ERROR_INVALID_PARAMETER );
461 return 0;
463 attr.Length = sizeof(attr);
464 attr.RootDirectory = get_BaseNamedObjects_handle();
465 attr.ObjectName = &nameW;
466 attr.Attributes = inherit ? OBJ_INHERIT : 0;
467 attr.SecurityDescriptor = NULL;
468 attr.SecurityQualityOfService = NULL;
469 RtlInitUnicodeString( &nameW, name );
471 if (access == FILE_MAP_COPY) access = SECTION_MAP_READ;
472 access |= SECTION_QUERY;
474 if (GetVersion() & 0x80000000)
476 /* win9x doesn't do access checks, so try with full access first */
477 if (!NtOpenSection( &ret, access | SECTION_MAP_READ | SECTION_MAP_WRITE, &attr )) return ret;
480 if ((status = NtOpenSection( &ret, access, &attr )))
482 SetLastError( RtlNtStatusToDosError(status) );
483 ret = 0;
485 return ret;
489 /***********************************************************************
490 * MapViewOfFile (KERNEL32.@)
492 * Maps a view of a file into the address space.
494 * PARAMS
495 * mapping [I] File-mapping object to map.
496 * access [I] Access mode.
497 * offset_high [I] High-order 32 bits of file offset.
498 * offset_low [I] Low-order 32 bits of file offset.
499 * count [I] Number of bytes to map.
501 * RETURNS
502 * Success: Starting address of mapped view.
503 * Failure: NULL.
505 LPVOID WINAPI MapViewOfFile( HANDLE mapping, DWORD access,
506 DWORD offset_high, DWORD offset_low, SIZE_T count )
508 return MapViewOfFileEx( mapping, access, offset_high,
509 offset_low, count, NULL );
513 /***********************************************************************
514 * MapViewOfFileEx (KERNEL32.@)
516 * Maps a view of a file into the address space.
518 * PARAMS
519 * handle [I] File-mapping object to map.
520 * access [I] Access mode.
521 * offset_high [I] High-order 32 bits of file offset.
522 * offset_low [I] Low-order 32 bits of file offset.
523 * count [I] Number of bytes to map.
524 * addr [I] Suggested starting address for mapped view.
526 * RETURNS
527 * Success: Starting address of mapped view.
528 * Failure: NULL.
530 LPVOID WINAPI MapViewOfFileEx( HANDLE handle, DWORD access,
531 DWORD offset_high, DWORD offset_low, SIZE_T count, LPVOID addr )
533 NTSTATUS status;
534 LARGE_INTEGER offset;
535 ULONG protect;
537 offset.u.LowPart = offset_low;
538 offset.u.HighPart = offset_high;
540 if (access & FILE_MAP_WRITE) protect = PAGE_READWRITE;
541 else if (access & FILE_MAP_COPY) protect = PAGE_WRITECOPY;
542 else protect = PAGE_READONLY;
544 if (access & FILE_MAP_EXECUTE) protect <<= 4;
546 if ((status = NtMapViewOfSection( handle, GetCurrentProcess(), &addr, 0, 0, &offset,
547 &count, ViewShare, 0, protect )) < 0)
549 SetLastError( RtlNtStatusToDosError(status) );
550 addr = NULL;
552 return addr;
556 /***********************************************************************
557 * UnmapViewOfFile (KERNEL32.@)
559 * Unmaps a mapped view of a file.
561 * PARAMS
562 * addr [I] Address where mapped view begins.
564 * RETURNS
565 * Success: TRUE.
566 * Failure: FALSE.
569 BOOL WINAPI UnmapViewOfFile( LPCVOID addr )
571 NTSTATUS status = NtUnmapViewOfSection( GetCurrentProcess(), (void *)addr );
572 if (status) SetLastError( RtlNtStatusToDosError(status) );
573 return !status;
577 /***********************************************************************
578 * FlushViewOfFile (KERNEL32.@)
580 * Writes to the disk a byte range within a mapped view of a file.
582 * PARAMS
583 * base [I] Start address of byte range to flush.
584 * size [I] Number of bytes in range.
586 * RETURNS
587 * Success: TRUE.
588 * Failure: FALSE.
590 BOOL WINAPI FlushViewOfFile( LPCVOID base, SIZE_T size )
592 NTSTATUS status = NtFlushVirtualMemory( GetCurrentProcess(), &base, &size, 0 );
593 if (status)
595 if (status == STATUS_NOT_MAPPED_DATA) status = STATUS_SUCCESS;
596 else SetLastError( RtlNtStatusToDosError(status) );
598 return !status;
602 /***********************************************************************
603 * GetWriteWatch (KERNEL32.@)
605 UINT WINAPI GetWriteWatch( DWORD flags, LPVOID base, SIZE_T size, LPVOID *addresses,
606 ULONG_PTR *count, ULONG *granularity )
608 NTSTATUS status;
610 status = NtGetWriteWatch( GetCurrentProcess(), flags, base, size, addresses, count, granularity );
611 if (status) SetLastError( RtlNtStatusToDosError(status) );
612 return status ? ~0u : 0;
616 /***********************************************************************
617 * ResetWriteWatch (KERNEL32.@)
619 UINT WINAPI ResetWriteWatch( LPVOID base, SIZE_T size )
621 NTSTATUS status;
623 status = NtResetWriteWatch( GetCurrentProcess(), base, size );
624 if (status) SetLastError( RtlNtStatusToDosError(status) );
625 return status ? ~0u : 0;
629 /***********************************************************************
630 * IsBadReadPtr (KERNEL32.@)
632 * Check for read access on a memory block.
634 * ptr [I] Address of memory block.
635 * size [I] Size of block.
637 * RETURNS
638 * Success: TRUE.
639 * Failure: FALSE. Process has read access to entire block.
641 BOOL WINAPI IsBadReadPtr( LPCVOID ptr, UINT size )
643 if (!size) return FALSE; /* handle 0 size case w/o reference */
644 if (!ptr) return TRUE;
646 if (!page_size) page_size = getpagesize();
647 __TRY
649 volatile const char *p = ptr;
650 char dummy __attribute__((unused));
651 UINT count = size;
653 while (count > page_size)
655 dummy = *p;
656 p += page_size;
657 count -= page_size;
659 dummy = p[0];
660 dummy = p[count - 1];
662 __EXCEPT_PAGE_FAULT
664 TRACE_(seh)("%p caused page fault during read\n", ptr);
665 return TRUE;
667 __ENDTRY
668 return FALSE;
672 /***********************************************************************
673 * IsBadWritePtr (KERNEL32.@)
675 * Check for write access on a memory block.
677 * PARAMS
678 * ptr [I] Address of memory block.
679 * size [I] Size of block in bytes.
681 * RETURNS
682 * Success: TRUE.
683 * Failure: FALSE. Process has write access to entire block.
685 BOOL WINAPI IsBadWritePtr( LPVOID ptr, UINT size )
687 if (!size) return FALSE; /* handle 0 size case w/o reference */
688 if (!ptr) return TRUE;
690 if (!page_size) page_size = getpagesize();
691 __TRY
693 volatile char *p = ptr;
694 UINT count = size;
696 while (count > page_size)
698 *p |= 0;
699 p += page_size;
700 count -= page_size;
702 p[0] |= 0;
703 p[count - 1] |= 0;
705 __EXCEPT_PAGE_FAULT
707 TRACE_(seh)("%p caused page fault during write\n", ptr);
708 return TRUE;
710 __ENDTRY
711 return FALSE;
715 /***********************************************************************
716 * IsBadHugeReadPtr (KERNEL32.@)
718 * Check for read access on a memory block.
720 * PARAMS
721 * ptr [I] Address of memory block.
722 * size [I] Size of block.
724 * RETURNS
725 * Success: TRUE.
726 * Failure: FALSE. Process has read access to entire block.
728 BOOL WINAPI IsBadHugeReadPtr( LPCVOID ptr, UINT size )
730 return IsBadReadPtr( ptr, size );
734 /***********************************************************************
735 * IsBadHugeWritePtr (KERNEL32.@)
737 * Check for write access on a memory block.
739 * PARAMS
740 * ptr [I] Address of memory block.
741 * size [I] Size of block.
743 * RETURNS
744 * Success: TRUE.
745 * Failure: FALSE. Process has write access to entire block.
747 BOOL WINAPI IsBadHugeWritePtr( LPVOID ptr, UINT size )
749 return IsBadWritePtr( ptr, size );
753 /***********************************************************************
754 * IsBadCodePtr (KERNEL32.@)
756 * Check for read access on a memory address.
758 * PARAMS
759 * ptr [I] Address of function.
761 * RETURNS
762 * Success: TRUE.
763 * Failure: FALSE. Process has read access to specified memory.
765 BOOL WINAPI IsBadCodePtr( FARPROC ptr )
767 return IsBadReadPtr( ptr, 1 );
771 /***********************************************************************
772 * IsBadStringPtrA (KERNEL32.@)
774 * Check for read access on a range of memory pointed to by a string pointer.
776 * PARAMS
777 * str [I] Address of string.
778 * max [I] Maximum size of string.
780 * RETURNS
781 * Success: TRUE.
782 * Failure: FALSE. Read access to all bytes in string.
784 BOOL WINAPI IsBadStringPtrA( LPCSTR str, UINT max )
786 if (!str) return TRUE;
788 __TRY
790 volatile const char *p = str;
791 while (p != str + max) if (!*p++) break;
793 __EXCEPT_PAGE_FAULT
795 TRACE_(seh)("%p caused page fault during read\n", str);
796 return TRUE;
798 __ENDTRY
799 return FALSE;
803 /***********************************************************************
804 * IsBadStringPtrW (KERNEL32.@)
806 * See IsBadStringPtrA.
808 BOOL WINAPI IsBadStringPtrW( LPCWSTR str, UINT max )
810 if (!str) return TRUE;
812 __TRY
814 volatile const WCHAR *p = str;
815 while (p != str + max) if (!*p++) break;
817 __EXCEPT_PAGE_FAULT
819 TRACE_(seh)("%p caused page fault during read\n", str);
820 return TRUE;
822 __ENDTRY
823 return FALSE;
826 /***********************************************************************
827 * K32GetMappedFileNameA (KERNEL32.@)
829 DWORD WINAPI K32GetMappedFileNameA(HANDLE process, LPVOID lpv, LPSTR file_name, DWORD size)
831 FIXME_(file)("(%p, %p, %p, %d): stub\n", process, lpv, file_name, size);
833 if (file_name && size)
834 file_name[0] = '\0';
836 return 0;
839 /***********************************************************************
840 * K32GetMappedFileNameW (KERNEL32.@)
842 DWORD WINAPI K32GetMappedFileNameW(HANDLE process, LPVOID lpv, LPWSTR file_name, DWORD size)
844 FIXME_(file)("(%p, %p, %p, %d): stub\n", process, lpv, file_name, size);
846 if (file_name && size)
847 file_name[0] = '\0';
849 return 0;
852 /***********************************************************************
853 * K32EnumPageFilesA (KERNEL32.@)
855 BOOL WINAPI K32EnumPageFilesA( PENUM_PAGE_FILE_CALLBACKA callback, LPVOID context )
857 FIXME_(file)("(%p, %p) stub\n", callback, context );
858 return FALSE;
861 /***********************************************************************
862 * K32EnumPageFilesW (KERNEL32.@)
864 BOOL WINAPI K32EnumPageFilesW( PENUM_PAGE_FILE_CALLBACKW callback, LPVOID context )
866 FIXME_(file)("(%p, %p) stub\n", callback, context );
867 return FALSE;
870 /***********************************************************************
871 * K32GetWsChanges (KERNEL32.@)
873 BOOL WINAPI K32GetWsChanges(HANDLE process, PPSAPI_WS_WATCH_INFORMATION watchinfo, DWORD size)
875 NTSTATUS status;
877 TRACE_(seh)("(%p, %p, %d)\n", process, watchinfo, size);
879 status = NtQueryInformationProcess( process, ProcessWorkingSetWatch, watchinfo, size, NULL );
881 if (status)
883 SetLastError( RtlNtStatusToDosError( status ) );
884 return FALSE;
886 return TRUE;
889 /***********************************************************************
890 * K32InitializeProcessForWsWatch (KERNEL32.@)
892 BOOL WINAPI K32InitializeProcessForWsWatch(HANDLE process)
894 FIXME_(seh)("(process=%p): stub\n", process);
896 return TRUE;