I believe this is not worthy of hide tags, very simple way of loading a plugin from the 5th tab, I play with server sources just for learning, I added a way to be able to send a message to the listener from the 5th tab and was just playing around.
Probably not helpful to most but just trying stuff that's not already out, please delete if not worthy of a thread.
Code:
void loadPlugin()
{
XOVERLAPPED active;
WCHAR buffer[0x64];
CHAR plugin[0x64];
while (XShowKeyboardUI(0, VKBD_DEFAULT, L"", L"Module Loader", L"Enter plugin to load\n\nex HDD:\plugin.xex", buffer, 100, &active) == ERROR_ACCESS_DENIED) Sleep(500);
while (!XHasOverlappedIoCompleted(&active)) Sleep(500);
if (wcslen(buffer) <= 100)
{
wcstombs((PCHAR)plugin, buffer, 0x64);
if(XexLoadImage(plugin, 8, NULL, NULL) == ERROR_SUCCESS);
{
XNotifyUI(L"Module Loaded");
}
}
}
Probably not helpful to most but just trying stuff that's not already out, please delete if not worthy of a thread.