sneedmc/depends/patchlib/bspatch.h
Petr Mrázek 253067c782 Move all the things (YES. Move them.)
Also, implemented some basic modlist logic, to be wired up.
2013-08-17 13:40:51 +02:00

28 lines
379 B
C

#ifndef _BSPATCH_H
#define _BSPATCH_H
#ifdef __cplusplus
extern "C" {
#endif
enum BSPatchError
{
ERR_CORRUPT_PATCH,
ERR_OTHER,
ERR_NONE,
};
/**
* patch oldfile by using patchfile and write the output to newfile.
*
* Returns ERR_NONE if successful
*/
int bspatch(const char * oldfile, const char * newfile, const char * patchfile);
#ifdef __cplusplus
}
#endif
#endif