mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 18:17:39 -04:00
This is to enable binary patching of Hiby-based firmware files Note that noting in rbutil uses this yet. Change-Id: I03ac824dd7402d508eb4e857ad78f184eb0d0243
10 lines
203 B
C
10 lines
203 B
C
/*
|
|
* Simple wrapper for the bspatch entry point.
|
|
*/
|
|
|
|
#ifndef _BSPATCH_H
|
|
#define _BSPATCH_H
|
|
|
|
int apply_bspatch(const char *infile, const char *outfile, const char *patchfile);
|
|
|
|
#endif /* _BSPATCH_H */
|