image_util.h 201 B

12345678910
  1. #ifndef IMAGE_UTIL_H
  2. #define IMAGE_UTIL_H
  3. bool openImage( const char *img );
  4. bool makeExe( int entry );
  5. bool replaceRsrc( int type,int id,int land,void *data,int data_sz );
  6. void closeImage();
  7. #endif