rufus/src/ms-sys/inc/file.h

28 lines
1005 B
C
Raw Normal View History

2011-11-29 20:18:23 +00:00
#ifndef FILE_H
#define FILE_H
/* Max valid value of uiLen for contains_data */
#define MAX_DATA_LEN 8192
2011-11-29 20:18:23 +00:00
/* Checks if a file contains a data pattern of length uiLen at position
ulPositoin. The file pointer will change when calling this function! */
int contains_data(FILE *fp, size_t ulPosition,
const void *pData, size_t uiLen);
2011-11-29 20:18:23 +00:00
/* Writes a data pattern of length uiLen at position ulPositoin.
The file pointer will change when calling this function! */
int write_data(FILE *fp, size_t ulPosition,
const void *pData, size_t uiLen);
2011-11-29 20:18:23 +00:00
/* Writes nSectors of size SectorSize starting at sector StartSector */
2011-11-29 20:18:23 +00:00
int write_sectors(void *hDrive, size_t SectorSize,
size_t StartSector, size_t nSectors,
const void *pBuf);
2011-11-29 20:18:23 +00:00
/* Reads nSectors of size SectorSize starting at sector StartSector */
2011-11-29 20:18:23 +00:00
int read_sectors(void *hDrive, size_t SectorSize,
size_t StartSector, size_t nSectors,
void *pBuf);
2011-11-29 20:18:23 +00:00
#endif