Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Shendo

Pages: [1]
1
And it's done. Visit http://shendosoft.blogspot.com/ for more information and a download link.

Big thanks to Sithlord48 for the support. ;)

2
I can't create PMs (yet?)...
Anyway, we can chat through IRC (specify channel) or through Skype. PM me with your contact info.

3
Hello everyone.
I'm Shendo, the creator of MemcardRex.

I've taken a quick look at the source and as I can see classes are pretty much Qt specific.
Porting the code to C# will take a large amount of time (rebuilding the entire GUI with WinForms for example)

However, if it's possible to compile a DLL instead of an executable with these functions exported:
Code: [Select]
string getPluginName();  //Plugin name + version
string getPluginAuthor();   //Author name
string getPluginSupportedGames();  //In this case "Final Fantasy VII"
string[] getSupportedProductCodes();   //Array of supported product codes (eg. {"SCUS-94163"})
byte[] editSaveData(byte[] gameSaveData, string saveProductCode);   //Get 128 + 8192 byte save file and return edited one (null if there were no changes)
void showAboutDialog();
void showConfigDialog();
I could easily make a "pass-through" DLL which would bind .net with qt based DLL Black Chocobo, effectively making it a plugin.

Pages: [1]