mirror of
https://github.com/Thesola10/umd-livepatch.git
synced 2025-04-19 14:03:23 +00:00
21 lines
307 B
C
21 lines
307 B
C
#ifndef __RPATCH_H
|
|
#define __RPATCH_H
|
|
|
|
|
|
typedef struct {
|
|
long sector_start;
|
|
long sector_count;
|
|
|
|
/* If zero, block is unchanged */
|
|
long patch_start;
|
|
|
|
/* If smaller than sector_count, repeating data */
|
|
long patch_len;
|
|
} lp_Patch;
|
|
|
|
typedef struct {
|
|
|
|
} lp_PatchSet;
|
|
|
|
#endif //__RPATCH_H
|