2020-04-08 18:39:30 +00:00
|
|
|
/*
|
|
|
|
* Simple wrapper for the bspatch entry point.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _BSPATCH_H
|
|
|
|
#define _BSPATCH_H
|
|
|
|
|
2020-04-15 21:15:57 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2020-04-08 18:39:30 +00:00
|
|
|
int apply_bspatch(const char *infile, const char *outfile, const char *patchfile);
|
|
|
|
|
2020-04-15 21:15:57 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2020-04-08 18:39:30 +00:00
|
|
|
#endif /* _BSPATCH_H */
|