Advertisement
Reisyukaku

[C] crypto_dll.h

Nov 8th, 2014
503
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.38 KB | None | 0 0
  1. /*
  2. *       Crypto.dll
  3. *         by Reisyukaku
  4. *
  5. *   Library of decryption functions for 3DS roms
  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 decryptRomFS(char* path, char* prodCode, char* romname, uint32_t romfsOff, uint32_t fsSize);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement