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.
21 lines
511 B
21 lines
511 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
|
|
|
|
#endif
|