blitz_incbin.h 280 B

12345678910111213141516171819
  1. #ifndef BLITZ_INCBIN_H
  2. #define BLITZ_INCBIN_H
  3. #include "blitz_types.h"
  4. #ifdef __cplusplus
  5. extern "C"{
  6. #endif
  7. int bbIncbinAdd( BBString *file,void *ptr,int len );
  8. void* bbIncbinPtr( BBString *file );
  9. int bbIncbinLen( BBString *file );
  10. #ifdef __cplusplus
  11. }
  12. #endif
  13. #endif