Browse Source

win32: don't redefine GetCurrentConsoleFont with mingw-w64

It's already defined properly.
pull/75/head
Steve Lhomme 1 year ago
parent
commit
ceed13243b
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      caca/driver/win32.c

+ 1
- 1
caca/driver/win32.c View File

@@ -25,7 +25,7 @@
#define WIN32_LEAN_AND_MEAN
#include <windows.h>

#ifdef __MINGW32__
#if defined(__MINGW32__) && !defined(__MINGW64_VERSION_MAJOR)
/* This is missing from the MinGW headers. */
# if (_WIN32_WINNT >= 0x0500)
BOOL WINAPI GetCurrentConsoleFont(HANDLE hConsoleOutput, BOOL bMaximumWindow,


Loading…
Cancel
Save