You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With these edits made to the code in gui.hpp it still dosent work;
typedef HWND(WINAPI* CreateWindowExPtr)(
DWORD dwExStyle,
LPCWSTR lpClassName,
LPCWSTR lpWindowName,
DWORD dwStyle,
int x,
int y,
int nWidth,
int nHeight,
HWND hWndParent,
HMENU hMenu,
HINSTANCE hInstance,
LPVOID lpParam
);
CreateWindowExPtr create_window_in_band;
// Then in your code, after checking for the function pointers from different libraries:
create_window_in_band = reinterpret_cast(GetProcAddress(librarys::user32, "CreateWindowEx"));
if (!create_window_in_band)
{
create_window_in_band = reinterpret_cast(GetProcAddress(librarys::win32u, "CreateWindowEx"));
if (!create_window_in_band) return false;
}
When the driver is in memory kdmapper says success the um.exe still says GUI not initialised after pressing insert and closes.
The text was updated successfully, but these errors were encountered: