summaryrefslogtreecommitdiff
path: root/src/Fl_win32.cxx
diff options
context:
space:
mode:
authorMatthias Melcher <fltk@matthiasm.com>2016-02-10 21:02:38 +0000
committerMatthias Melcher <fltk@matthiasm.com>2016-02-10 21:02:38 +0000
commit1ad9f6acf2cb8e04bf7e083a2023003becfa64cf (patch)
tree94b710f4138c0003d13bdfefe239b0e2b33c4539 /src/Fl_win32.cxx
parentc3b3105720fbe10af88c97c25bc8939659021f07 (diff)
Fixed Screen Drivers for MSWindows
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11150 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/Fl_win32.cxx')
-rw-r--r--src/Fl_win32.cxx32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/Fl_win32.cxx b/src/Fl_win32.cxx
index 439f06d8c..6cf154c16 100644
--- a/src/Fl_win32.cxx
+++ b/src/Fl_win32.cxx
@@ -537,38 +537,6 @@ void Fl::disable_im() {
////////////////////////////////////////////////////////////////
-int Fl::x()
-{
- RECT r;
-
- SystemParametersInfo(SPI_GETWORKAREA, 0, &r, 0);
- return r.left;
-}
-
-int Fl::y()
-{
- RECT r;
-
- SystemParametersInfo(SPI_GETWORKAREA, 0, &r, 0);
- return r.top;
-}
-
-int Fl::h()
-{
- RECT r;
-
- SystemParametersInfo(SPI_GETWORKAREA, 0, &r, 0);
- return r.bottom - r.top;
-}
-
-int Fl::w()
-{
- RECT r;
-
- SystemParametersInfo(SPI_GETWORKAREA, 0, &r, 0);
- return r.right - r.left;
-}
-
void Fl::get_mouse(int &x, int &y) {
POINT p;
GetCursorPos(&p);