comparison src/log.h @ 5944:158196b2db19

[gaim-migrate @ 6385] Added #ifdef __cplusplus lines so that things will link right with C++. Also added some doxygen comment blocks that didn't previously exist. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Mon, 23 Jun 2003 06:40:13 +0000
parents 91ee71a394be
children 0c5637b5462e
comparison
equal deleted inserted replaced
5943:a4f2aba0848d 5944:158196b2db19
48 char name[80]; 48 char name[80];
49 char filename[512]; 49 char filename[512];
50 struct log_conversation *next; 50 struct log_conversation *next;
51 }; 51 };
52 52
53 #ifdef __cplusplus
54 extern "C" {
55 #endif
56
53 extern GList *log_conversations; 57 extern GList *log_conversations;
54 58
55 FILE *open_log_file (const char *, int); 59 FILE *open_log_file (const char *, int);
56 void system_log(enum log_event, GaimConnection *, struct buddy *, int); 60 void system_log(enum log_event, GaimConnection *, struct buddy *, int);
57 void rm_log(struct log_conversation *); 61 void rm_log(struct log_conversation *);
58 struct log_conversation *find_log_info(const char *); 62 struct log_conversation *find_log_info(const char *);
59 void update_log_convs(); 63 void update_log_convs();
60 char *html_logize(const char *p); 64 char *html_logize(const char *p);
61 65
66 #ifdef __cplusplus
67 }
68 #endif
69
62 #endif /* _GAIM_LOG_H_ */ 70 #endif /* _GAIM_LOG_H_ */