Commit 13ea5155 authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

kernel32: Move FileCDR16 in with the other 16bit file functions.

parent a1edebf5
......@@ -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( HANDLE handle )
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 )
......
......@@ -733,3 +733,12 @@ BOOL16 WINAPI GetDiskFreeSpace16( LPCSTR root, LPDWORD cluster_sectors,
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;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment