mirror of
https://github.com/pbatard/rufus.git
synced 2025-05-27 21:24:17 -04:00
[misc] move source files to src/ directory
This commit is contained in:
parent
4edb492c19
commit
48f9dd47ae
53 changed files with 249 additions and 260 deletions
27
src/inc/file.h
Normal file
27
src/inc/file.h
Normal file
|
@ -0,0 +1,27 @@
|
|||
#ifndef FILE_H
|
||||
#define FILE_H
|
||||
|
||||
/* Max valid value of uiLen for contains_data */
|
||||
#define MAX_DATA_LEN 4096
|
||||
|
||||
/* 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);
|
||||
|
||||
/* 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);
|
||||
|
||||
/* Checks if a file contains a data pattern of length uiLen at position
|
||||
ulPositoin. The file pointer will change when calling this function! */
|
||||
int write_sectors(void *hDrive, size_t SectorSize,
|
||||
size_t StartSector, size_t nSectors,
|
||||
const void *pBuf, size_t BufSize);
|
||||
|
||||
int read_sectors(void *hDrive, size_t SectorSize,
|
||||
size_t StartSector, size_t nSectors,
|
||||
void *pBuf, size_t BufSize);
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue