Ver código fonte

win32: don't redefine GetCurrentConsoleFont with mingw-w64

It's already defined properly.
pull/75/head
Steve Lhomme 1 ano atrás
pai
commit
ceed13243b
1 arquivos alterados com 1 adições e 1 exclusões
  1. +1
    -1
      caca/driver/win32.c

+ 1
- 1
caca/driver/win32.c Ver arquivo

@@ -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,


Carregando…
Cancelar
Salvar