Advertisement
Reisyukaku

[C] garc_dll.h

Nov 8th, 2014
419
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.39 KB | None | 0 0
  1. /*
  2. *       Garc.dll
  3. *         by Reisyukaku
  4. *
  5. *   Set of functions to handle GARC files in the RomFS.
  6. */
  7.  
  8. #ifdef BUILD_DLL
  9. // the dll exports
  10. #define EXPORT __declspec(dllexport)
  11. #else
  12. // the exe imports
  13. #define EXPORT __declspec(dllimport)
  14. #endif
  15.  
  16. // function to be imported/exported
  17. EXPORT int* getgarcs (char* file);
  18. EXPORT void writegarc(char* inFile, char* outFile, int garcOff, int len);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement