ReactOS Fundraising Campaign 2012
 
€ 4,410 / € 30,000

Information | Donate

Home | Info | Community | Development | myReactOS | Contact Us

  1. Home
  2. Community
  3. Development
  4. myReactOS
  5. Fundraiser 2012

  1. Main Page
  2. Alphabetical List
  3. Data Structures
  4. Directories
  5. File List
  6. Data Fields
  7. Globals
  8. Related Pages

ReactOS Development > Doxygen

backup.c
Go to the documentation of this file.
00001 /* $Id: backup.c 48475 2010-08-07 05:02:58Z sir_richard $
00002  *
00003  * COPYRIGHT:       See COPYING in the top level directory
00004  * PROJECT:         ReactOS system libraries
00005  * FILE:            lib/kernel32/file/backup.c
00006  * PURPOSE:         Backup functions
00007  * PROGRAMMER:      Ariadne ( ariadne@xs4all.nl)
00008  * UPDATE HISTORY:
00009  */
00010 
00011 /* INCLUDES *****************************************************************/
00012 
00013 #include <k32.h>
00014 #define NDEBUG
00015 #include <debug.h>
00016 
00017 /* FUNCTIONS ****************************************************************/
00018 
00019 /*
00020  * @unimplemented
00021  */
00022 BOOL
00023 WINAPI
00024 BackupRead (
00025     HANDLE  hFile,
00026     LPBYTE  lpBuffer,
00027     DWORD   nNumberOfBytesToRead,
00028     LPDWORD lpNumberOfBytesRead,
00029     BOOL    bAbort,
00030     BOOL    bProcessSecurity,
00031     LPVOID  * lpContext
00032     )
00033 {
00034     UNIMPLEMENTED;
00035     SetLastError(ERROR_NOT_SUPPORTED);
00036     return FALSE;
00037 }
00038 
00039 
00040 /*
00041  * @unimplemented
00042  */
00043 BOOL
00044 WINAPI
00045 BackupSeek (
00046     HANDLE  hFile,
00047     DWORD   dwLowBytesToSeek,
00048     DWORD   dwHighBytesToSeek,
00049     LPDWORD lpdwLowByteSeeked,
00050     LPDWORD lpdwHighByteSeeked,
00051     LPVOID  * lpContext
00052     )
00053 {
00054     UNIMPLEMENTED;
00055     SetLastError(ERROR_NOT_SUPPORTED);
00056     return FALSE;
00057 }
00058 
00059 
00060 /*
00061  * @unimplemented
00062  */
00063 BOOL
00064 WINAPI
00065 BackupWrite (
00066     HANDLE  hFile,
00067     LPBYTE  lpBuffer,
00068     DWORD   nNumberOfBytesToWrite,
00069     LPDWORD lpNumberOfBytesWritten,
00070     BOOL    bAbort,
00071     BOOL    bProcessSecurity,
00072     LPVOID  * lpContext
00073     )
00074 {
00075     UNIMPLEMENTED;
00076     SetLastError(ERROR_NOT_SUPPORTED);
00077     return FALSE;
00078 }
00079 
00080 /* EOF */

Generated on Sun May 27 2012 04:24:25 for ReactOS by doxygen 1.7.6.1

ReactOS is a registered trademark or a trademark of ReactOS Foundation in the United States and other countries.