1 #ifndef __CALLJXGETMOUSE_H__
2 #define __CALLJXGETMOUSE_H__
3 
4 /*
5  * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
6  * Copyright (C) 2007 - INRIA - Vincent COUVERT
7  *
8  * Copyright (C) 2012 - 2016 - Scilab Enterprises
9  *
10  * This file is hereby licensed under the terms of the GNU GPL v2.0,
11  * pursuant to article 5.3.4 of the CeCILL v.2.1.
12  * This file was originally licensed under the terms of the CeCILL v2.1,
13  * and continues to be available under such terms.
14  * For more information, see the COPYING file which you should have received
15  * along with this program.
16  *
17  */
18 
19 #include "dynlib_gui.h"
20 
21 GUI_IMPEXP void CallJxgetmouse(void);
22 
23 GUI_IMPEXP void CallJxgetmouseWithOptions(int withMotion, int withRelease);
24 
25 GUI_IMPEXP int getJxgetmouseMouseButtonNumber(void);
26 
27 GUI_IMPEXP int getJxgetmouseWindowsID(void);
28 
29 GUI_IMPEXP double getJxgetmouseXCoordinate(void);
30 
31 GUI_IMPEXP double getJxgetmouseYCoordinate(void);
32 #endif
33 
34