(rcore_desktop_rgfw.c) fix errors when compiling with mingw (#4282)

* (rcore_desktop_rgfw.c) fix errors when compiling with mingw

* define WideCharToMultiByte
This commit is contained in:
Colleague Riley 2024-08-24 12:43:46 -04:00 committed by GitHub
parent dfd8055270
commit bc0bd98763
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 6 deletions

4
src/external/RGFW.h vendored
View File

@ -4999,7 +4999,9 @@ static const struct wl_callback_listener wl_surface_frame_listener = {
#define WIN32_LEAN_AND_MEAN #define WIN32_LEAN_AND_MEAN
#define OEMRESOURCE #define OEMRESOURCE
#include <windows.h> #include <windows.h>
__declspec(dllimport) int __stdcall WideCharToMultiByte( UINT CodePage, DWORD dwFlags, const WCHAR* lpWideCharStr, int cchWideChar, LPSTR lpMultiByteStr, int cbMultiByte, LPCCH lpDefaultChar, LPBOOL lpUsedDefaultChar);
#include <processthreadsapi.h> #include <processthreadsapi.h>
#include <wchar.h> #include <wchar.h>
#include <locale.h> #include <locale.h>

View File

@ -76,9 +76,7 @@ void CloseWindow(void);
#define Size NSSIZE #define Size NSSIZE
#endif #endif
#if defined(_MSC_VER)
__declspec(dllimport) int __stdcall MultiByteToWideChar(unsigned int CodePage, unsigned long dwFlags, const char *lpMultiByteStr, int cbMultiByte, wchar_t *lpWideCharStr, int cchWideChar); __declspec(dllimport) int __stdcall MultiByteToWideChar(unsigned int CodePage, unsigned long dwFlags, const char *lpMultiByteStr, int cbMultiByte, wchar_t *lpWideCharStr, int cchWideChar);
#endif
#include "../external/RGFW.h" #include "../external/RGFW.h"
@ -538,10 +536,8 @@ void *GetWindowHandle(void)
{ {
#ifdef RGFW_WEBASM #ifdef RGFW_WEBASM
return (void*)platform.window->src.ctx; return (void*)platform.window->src.ctx;
#elif !defined(RGFW_WINDOWS)
return (void *)platform.window->src.window;
#else #else
return platform.window->src.hwnd; return (void*)platform.window->src.window;
#endif #endif
} }