summaryrefslogtreecommitdiff
path: root/src/Fl_lock.cxx
diff options
context:
space:
mode:
authorMatthias Melcher <fltk@matthiasm.com>2016-04-19 22:45:22 +0000
committerMatthias Melcher <fltk@matthiasm.com>2016-04-19 22:45:22 +0000
commit769d151a121ac849a365a509d644c3328738970a (patch)
tree65aab2b83a8ca4b678088b06e8771053c10943d7 /src/Fl_lock.cxx
parentcd4498021e9623da828b3fb8344bc4db35675efe (diff)
Virtualized add_fd and remove_fd into System Driver
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11668 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/Fl_lock.cxx')
-rw-r--r--src/Fl_lock.cxx3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Fl_lock.cxx b/src/Fl_lock.cxx
index da30a61e6..fe651804b 100644
--- a/src/Fl_lock.cxx
+++ b/src/Fl_lock.cxx
@@ -18,15 +18,18 @@
#include "config_lib.h"
#include <FL/Fl.H>
+#include <FL/Fl_System_Driver.H>
#include <stdlib.h>
+// FIXME: why do we need the lines below?
#if defined(FL_CFG_SYS_POSIX)
#include "drivers/Posix/Fl_Posix_System_Driver.H"
#elif defined(FL_CFG_SYS_WIN32)
#include "drivers/WinAPI/Fl_WinAPI_System_Driver.H"
#endif
+
/*
From Bill: