1 /* Panorama_Tools	-	Generate, Edit and Convert Panoramic Images
2 
3    This program is free software; you can redistribute it and/or modify
4    it under the terms of the GNU General Public License as published by
5    the Free Software Foundation; either version 2, or (at your option)
6    any later version.
7 
8    This program is distributed in the hope that it will be useful,
9    but WITHOUT ANY WARRANTY; without even the implied warranty of
10    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11    GNU General Public License for more details.
12 
13    You should have received a copy of the GNU General Public License
14    along with this software; see the file COPYING.  If not, a copy
15    can be downloaded from http://www.gnu.org/licenses/gpl.html, or
16    obtained by writing to the Free Software Foundation, Inc.,
17    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
18 
19 /*------------------------------------------------------------*/
20 
21 // This file contains stubs to avoid errors if java functions
22 // are not used
23 
24 #ifndef FALSE
25 	#define FALSE 0
26 #endif
27 
28 #define SET_JAVA JavaUI = FALSE
29 
30 int JavaUI 			= FALSE;
31 
JPrintError(char * text)32 void JPrintError( char* text ){
33 }
34 
35