Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- * Crypto.dll
- * by Reisyukaku
- *
- * Library of decryption functions for 3DS roms
- */
- #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 decryptRomFS(char* path, char* prodCode, char* romname, uint32_t romfsOff, uint32_t fsSize);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement