Use the module handle, if CreateWindowEx is called with
hInstance==NULL.
diff --git a/windows/win.c b/windows/win.c
index cc7fff6..9e219e5 100644
--- a/windows/win.c
+++ b/windows/win.c
@@ -1091,6 +1091,9 @@
ATOM classAtom;
CREATESTRUCTA cs;
+ if(!instance)
+ instance=GetModuleHandleA(NULL);
+
if(exStyle & WS_EX_MDICHILD)
return MDI_CreateMDIWindowA(className, windowName, style, x, y, width, height, parent, instance, (LPARAM)data);
/* Find the class atom */
@@ -1133,6 +1136,9 @@
ATOM classAtom;
CREATESTRUCTW cs;
+ if(!instance)
+ instance=GetModuleHandleA(NULL);
+
if(exStyle & WS_EX_MDICHILD)
return MDI_CreateMDIWindowW(className, windowName, style, x, y, width, height, parent, instance, (LPARAM)data);