generateOutput.h 866 B

1234567891011121314151617181920212223
  1. //-------------------------------------------------------------------------------
  2. // generateOutput
  3. //-------------------------------------------------------------------------------
  4. #ifndef _GENERATEOUTPUT_H_
  5. #define _GENERATEOUTPUT_H_
  6. //-------------------------------------------------------------------------------
  7. #include "mergeImage.h"
  8. //-------------------------------------------------------------------------------
  9. bool mergeImageMain();
  10. bool copyToOutputFolder( const char *targetName, const char *srcName );
  11. bool copyFile( const char *targetName, const char *sourceName, u32 cpySize );
  12. bool copyFileContent( FILE *fpOut, const char *sourceFileName, u32 cpySize );
  13. void removeTempFile( const char *fileName );
  14. void stuff_File_with_zero(FILE *fpIn, u32 size);
  15. //-------------------------------------------------------------------------------
  16. #endif