Changed xwin_glut_is_initialized() to return int.

svn path=/trunk/boinc/; revision=5321
This commit is contained in:
Eric J. Korpela 2005-02-04 21:26:27 +00:00
parent 6013cc4644
commit 4f5cff90d5
2 changed files with 2 additions and 2 deletions

View File

@ -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, ...);

View File

@ -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
} }