From 1ad9f6acf2cb8e04bf7e083a2023003becfa64cf Mon Sep 17 00:00:00 2001 From: Matthias Melcher Date: Wed, 10 Feb 2016 21:02:38 +0000 Subject: Fixed Screen Drivers for MSWindows git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11150 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- src/Fl_win32.cxx | 32 -------------------------------- 1 file changed, 32 deletions(-) (limited to 'src/Fl_win32.cxx') 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); -- cgit v1.2.3