diff options
| author | maxim nikonov <maxim.nikonov@hqo.co> | 2026-02-05 15:21:34 +0500 |
|---|---|---|
| committer | maxim nikonov <maxim.nikonov@hqo.co> | 2026-02-05 15:21:34 +0500 |
| commit | db214d1145e46d527a46d1fc2519548d2c4d23f1 (patch) | |
| tree | cf0fd9922e4d54f6beb63888f9b28c8e2a787bdf /CMake/pen-support.c | |
| parent | 75fc94d6c71fe686f6dde5b41ad91cba2f6bdd6f (diff) | |
wip: fork
Diffstat (limited to 'CMake/pen-support.c')
| -rw-r--r-- | CMake/pen-support.c | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/CMake/pen-support.c b/CMake/pen-support.c deleted file mode 100644 index 3c3bed0be..000000000 --- a/CMake/pen-support.c +++ /dev/null @@ -1,41 +0,0 @@ -/* - Test Pen/Tablet support availability (Windows). - - Copyright 2026 by Bill Spitzak and others. - - This library is free software. Distribution and use rights are outlined in - the file "COPYING" which should have been included with this file. If this - file is missing or damaged, see the license at: - - https://www.fltk.org/COPYING.php - - Please see the following page on how to report bugs and issues: - - https://www.fltk.org/bugs.php -*/ - -/* - CMake test function: test if this can be compiled. - If compilation fails, then Pen/Tablet support can't be built and is disabled. -*/ - -/* We require Windows 8 or later features for Pen/Tablet support */ - -# if !defined(WINVER) || (WINVER < 0x0602) -# ifdef WINVER -# undef WINVER -# endif -# define WINVER 0x0602 -# endif -# if !defined(_WIN32_WINNT) || (_WIN32_WINNT < 0x0602) -# ifdef _WIN32_WINNT -# undef _WIN32_WINNT -# endif -# define _WIN32_WINNT 0x0602 -# endif - -#include <windows.h> - -int main() { - return POINTER_CHANGE_FIRSTBUTTON_DOWN; /* required symbol */ -} |
