Go to the documentation of this file.00001
00011 #ifndef HLOG_H
00012 #define HLOG_H
00013
00015 enum hlog_flag {
00016 HLOG_ERROR,
00017 HLOG_WARNING,
00018 HLOG_NORMAL,
00019 HLOG_DEBUG
00020 };
00021
00026 int hlog_init();
00027
00033 void hlog_write(enum hlog_flag flag, char* text);
00034
00039 void hlog_write_text(char* text);
00040
00041
00046 void hlog_write_integer(int number);
00047
00051 void hlog_close();
00052
00053
00054 #endif
00055