Module: wine Branch: refs/heads/master Commit: 13ea51556d3bf11201c635f258ba8c1dc470ea0c URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=13ea51556d3bf11201c635f2...
Author: Mike McCormack mike@codeweavers.com Date: Mon Jan 16 20:51:28 2006 +0100
kernel32: Move FileCDR16 in with the other 16bit file functions.
---
dlls/kernel/change.c | 10 ---------- dlls/kernel/file16.c | 9 +++++++++ 2 files changed, 9 insertions(+), 10 deletions(-)
diff --git a/dlls/kernel/change.c b/dlls/kernel/change.c index 601c18f..177c616 100644 --- a/dlls/kernel/change.c +++ b/dlls/kernel/change.c @@ -31,7 +31,6 @@ #include "winerror.h" #include "winternl.h" #include "kernel_private.h" -#include "wine/windef16.h" #include "wine/server.h" #include "wine/debug.h"
@@ -126,15 +125,6 @@ BOOL WINAPI FindCloseChangeNotification( return CloseHandle( handle ); }
-/*********************************************************************** -* FileCDR (KERNEL.130) -*/ -FARPROC16 WINAPI FileCDR16(FARPROC16 x) -{ - FIXME("(%p): stub\n", x); - return (FARPROC16)TRUE; -} - BOOL WINAPI ReadDirectoryChangesW( HANDLE handle, LPVOID buffer, DWORD len, BOOL subtree, DWORD filter, LPDWORD returned, LPOVERLAPPED overlapped, LPOVERLAPPED_COMPLETION_ROUTINE completion ) diff --git a/dlls/kernel/file16.c b/dlls/kernel/file16.c index 0ac6fad..503c614 100644 --- a/dlls/kernel/file16.c +++ b/dlls/kernel/file16.c @@ -733,3 +733,12 @@ BOOL16 WINAPI GetDiskFreeSpace16( LPCSTR return GetDiskFreeSpaceA( root, cluster_sectors, sector_bytes, free_clusters, total_clusters ); } + +/*********************************************************************** + * FileCDR (KERNEL.130) + */ +FARPROC16 WINAPI FileCDR16(FARPROC16 x) +{ + FIXME("(%p): stub\n", x); + return (FARPROC16)TRUE; +}