Fix missing default switch case in DllMain

This commit is contained in:
Руслан Ижбулатов 2018-06-10 21:04:27 +00:00
parent 43d6fe2583
commit 9330be8cf9

View File

@ -53,6 +53,8 @@ DllMain (HINSTANCE hinstDLL,
gtk_dll = (HMODULE) hinstDLL;
_gdk_dll_hinstance = hinstDLL;
break;
default:
break;
}
return TRUE;