Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- * Garc.dll
- * by Reisyukaku
- *
- * Set of functions to handle GARC files in the RomFS.
- */
- #ifdef BUILD_DLL
- // the dll exports
- #define EXPORT __declspec(dllexport)
- #else
- // the exe imports
- #define EXPORT __declspec(dllimport)
- #endif
- // function to be imported/exported
- EXPORT int* getgarcs (char* file);
- EXPORT void writegarc(char* inFile, char* outFile, int garcOff, int len);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement