summaryrefslogtreecommitdiff
path: root/src/Fl_win32.cxx
diff options
context:
space:
mode:
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);