You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
607 B
24 lines
607 B
/***************************************************************************************
|
|
*
|
|
* debug.h is part of SimpleSkyCam.
|
|
*
|
|
*****************************************************************************************/
|
|
|
|
#ifndef _DEBUG_H_
|
|
#define _DEBUG_H_
|
|
|
|
#include "config.h"
|
|
#include "simpleskycam.h"
|
|
#include "gui.h"
|
|
|
|
#ifdef DEBUG_ANGLES
|
|
extern void debug_angles_draw(cairo_t *cr);
|
|
extern void debug_angles_motionevent(GdkEvent *event);
|
|
extern void debug_angles_btnpress(GdkEvent *event);
|
|
#endif
|
|
|
|
extern void debug_init();
|
|
extern void debug_tofile(char *fname, int isheader, char *fmt, ...);
|
|
|
|
#endif
|