//------------------------------------------------------------------------------- // generateOutput //------------------------------------------------------------------------------- #ifndef _GENERATEOUTPUT_H_ #define _GENERATEOUTPUT_H_ //------------------------------------------------------------------------------- #include "mergeImage.h" //------------------------------------------------------------------------------- bool mergeImageMain(); bool copyToOutputFolder( const char *targetName, const char *srcName ); bool copyFile( const char *targetName, const char *sourceName, u32 cpySize ); bool copyFileContent( FILE *fpOut, const char *sourceFileName, u32 cpySize ); void removeTempFile( const char *fileName ); void stuff_File_with_zero(FILE *fpIn, u32 size); //------------------------------------------------------------------------------- #endif