reactos/dll/win32/kernel32/client/file/backup.c
Cameron Gutman c2d0d784c7 [USB-BRINGUP-TRUNK]
- Create a branch to do a proper merge of USB work from a trunk base instead of from cmake-bringup
- In the future, DO NOT under any circumstances branch another branch. This leads to merge problems!

svn path=/branches/usb-bringup-trunk/; revision=55018
2012-01-20 20:58:46 +00:00

81 lines
1.3 KiB
C

/* $Id$
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries
* FILE: lib/kernel32/file/backup.c
* PURPOSE: Backup functions
* PROGRAMMER: Ariadne ( ariadne@xs4all.nl)
* UPDATE HISTORY:
*/
/* INCLUDES *****************************************************************/
#include <k32.h>
#define NDEBUG
#include <debug.h>
/* FUNCTIONS ****************************************************************/
/*
* @unimplemented
*/
BOOL
WINAPI
BackupRead (
HANDLE hFile,
LPBYTE lpBuffer,
DWORD nNumberOfBytesToRead,
LPDWORD lpNumberOfBytesRead,
BOOL bAbort,
BOOL bProcessSecurity,
LPVOID * lpContext
)
{
UNIMPLEMENTED;
SetLastError(ERROR_NOT_SUPPORTED);
return FALSE;
}
/*
* @unimplemented
*/
BOOL
WINAPI
BackupSeek (
HANDLE hFile,
DWORD dwLowBytesToSeek,
DWORD dwHighBytesToSeek,
LPDWORD lpdwLowByteSeeked,
LPDWORD lpdwHighByteSeeked,
LPVOID * lpContext
)
{
UNIMPLEMENTED;
SetLastError(ERROR_NOT_SUPPORTED);
return FALSE;
}
/*
* @unimplemented
*/
BOOL
WINAPI
BackupWrite (
HANDLE hFile,
LPBYTE lpBuffer,
DWORD nNumberOfBytesToWrite,
LPDWORD lpNumberOfBytesWritten,
BOOL bAbort,
BOOL bProcessSecurity,
LPVOID * lpContext
)
{
UNIMPLEMENTED;
SetLastError(ERROR_NOT_SUPPORTED);
return FALSE;
}
/* EOF */