Merge pull request #79724 from Repiteo/gcc-windows-fixes
Fix gcc builds failing on windows
This commit is contained in:
commit
c8e191b7f4
2 changed files with 3 additions and 2 deletions
|
@ -2409,8 +2409,8 @@ void DisplayServerWindows::set_icon(const Ref<Image> &p_icon) {
|
||||||
SendMessage(windows[MAIN_WINDOW_ID].hWnd, WM_SETICON, ICON_BIG, (LPARAM)hicon);
|
SendMessage(windows[MAIN_WINDOW_ID].hWnd, WM_SETICON, ICON_BIG, (LPARAM)hicon);
|
||||||
} else {
|
} else {
|
||||||
icon = Ref<Image>();
|
icon = Ref<Image>();
|
||||||
SendMessage(windows[MAIN_WINDOW_ID].hWnd, WM_SETICON, ICON_SMALL, NULL);
|
SendMessage(windows[MAIN_WINDOW_ID].hWnd, WM_SETICON, ICON_SMALL, 0);
|
||||||
SendMessage(windows[MAIN_WINDOW_ID].hWnd, WM_SETICON, ICON_BIG, NULL);
|
SendMessage(windows[MAIN_WINDOW_ID].hWnd, WM_SETICON, ICON_BIG, 0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -53,6 +53,7 @@
|
||||||
#if defined(__GNUC__)
|
#if defined(__GNUC__)
|
||||||
// Workaround GCC warning from -Wcast-function-type.
|
// Workaround GCC warning from -Wcast-function-type.
|
||||||
#define wglGetProcAddress (void *)wglGetProcAddress
|
#define wglGetProcAddress (void *)wglGetProcAddress
|
||||||
|
#define GetProcAddress (void *)GetProcAddress
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
typedef HGLRC(APIENTRY *PFNWGLCREATECONTEXTATTRIBSARBPROC)(HDC, HGLRC, const int *);
|
typedef HGLRC(APIENTRY *PFNWGLCREATECONTEXTATTRIBSARBPROC)(HDC, HGLRC, const int *);
|
||||||
|
|
Loading…
Reference in a new issue