From: fennecdjay Date: Fri, 15 Mar 2019 23:48:40 +0000 (+0100) Subject: :art: win funcs typo X-Git-Tag: nightly~2640 X-Git-Url: http://10.11.0.4:5575/?a=commitdiff_plain;h=b1ab4709c6aeaba37fb82f8874069b0922848144;p=gwion.git :art: win funcs typo --- diff --git a/src/plug.c b/src/plug.c index 14218430..c2a5ea7d 100644 --- a/src/plug.c +++ b/src/plug.c @@ -36,7 +36,7 @@ struct Plug_ { #define DLSYM(dl, t, a) (t)(intptr_t)dlsym(dl, STR(a)); #define DLCLOSE(dl) dlclose(dl); #else -#include "window.h" +#include "windows.h" #define DLOPEN(dl, b) LoadLibrary(dl) #define DLSYM(dl, t, a) (t)(intptr_t)GetProcAddress(dl, STR(a)); #define DLCLOSE(dl) Freelibrary(dl);