mirror of https://github.com/BOINC/boinc.git
Changed xwin_glut_is_initialized() to return int.
svn path=/trunk/boinc/; revision=5321
This commit is contained in:
parent
6013cc4644
commit
4f5cff90d5
|
@ -64,7 +64,7 @@ enum
|
||||||
}; // possible longjmp-values to signal from where we jumped:
|
}; // possible longjmp-values to signal from where we jumped:
|
||||||
// 1= exit caught by atexit, 2 = signal caught by handler
|
// 1= exit caught by atexit, 2 = signal caught by handler
|
||||||
|
|
||||||
bool xwin_glut_is_initialized() { return glut_is_initialized; }
|
int xwin_glut_is_initialized() { return glut_is_initialized; }
|
||||||
|
|
||||||
void app_debug_msg (char *fmt, ...);
|
void app_debug_msg (char *fmt, ...);
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
extern bool xwin_glut_is_initialized();
|
extern int xwin_glut_is_initialized();
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue