(Griffin) Add ui_win32.c to Griffin

This commit is contained in:
twinaphex 2015-11-19 07:26:24 +01:00
parent f46d8a50fc
commit fc570c2420
2 changed files with 5 additions and 1 deletions

View File

@ -673,6 +673,10 @@ UI
#include "../ui/drivers/ui_qt.c"
#endif
#ifdef _WIN32
#include "../ui/drivers/ui_win32.c"
#endif
/*============================================================
MAIN
============================================================ */

View File

@ -26,7 +26,7 @@
static bool main_ui_companion_is_on_foreground;
static const ui_companion_driver_t *ui_companion_drivers[] = {
#ifdef _WIN32
#if defined(_WIN32)
&ui_companion_win32,
#endif
#ifdef HAVE_COCOA