mirror of
https://github.com/irssi/irssi.git
synced 2026-08-17 07:32:04 +02:00
..adding new files..
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@171 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
d01b094151
commit
c95034c6de
206 changed files with 31247 additions and 0 deletions
28
src/core/rawlog.h
Normal file
28
src/core/rawlog.h
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
#ifndef __RAWLOG_H
|
||||
#define __RAWLOG_H
|
||||
|
||||
typedef struct {
|
||||
int logging;
|
||||
int file;
|
||||
|
||||
int nlines;
|
||||
GSList *lines;
|
||||
} RAWLOG_REC;
|
||||
|
||||
RAWLOG_REC *rawlog_create(void);
|
||||
void rawlog_destroy(RAWLOG_REC *rawlog);
|
||||
|
||||
void rawlog_input(RAWLOG_REC *rawlog, const char *str);
|
||||
void rawlog_output(RAWLOG_REC *rawlog, const char *str);
|
||||
void rawlog_redirect(RAWLOG_REC *rawlog, const char *str);
|
||||
|
||||
void rawlog_set_size(int lines);
|
||||
|
||||
void rawlog_open(RAWLOG_REC *rawlog, const char *fname);
|
||||
void rawlog_close(RAWLOG_REC *rawlog);
|
||||
void rawlog_save(RAWLOG_REC *rawlog, const char *fname);
|
||||
|
||||
void rawlog_init(void);
|
||||
void rawlog_deinit(void);
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue