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.
22 lines
528 B
22 lines
528 B
/***************************************************************************************
|
|
*
|
|
* error.h is part of SimpleSkyCam.
|
|
*
|
|
*****************************************************************************************/
|
|
|
|
|
|
#ifndef _ERROR_H_
|
|
#define _ERROR_H_
|
|
|
|
#define ERRORMSG_LEN 2048
|
|
struct ErrorMessage {
|
|
char window[ERRORMSG_LEN];
|
|
char title[ERRORMSG_LEN];
|
|
char message[ERRORMSG_LEN];
|
|
};
|
|
|
|
void errorexit (char *fmt,...);
|
|
void errormessage_display (char *windowname, char *title, char *fmt,...);
|
|
|
|
#endif // _ERROR_H_
|