Subversion Repositories IRC-Archiver

Rev

Rev 11 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
10 nishi 1
/* $Id: web_db.h 13 2024-08-30 07:33:43Z nishi $ */
2
 
3
#ifndef __WEB_DB_H__
4
#define __WEB_DB_H__
5
 
11 nishi 6
typedef struct {
7
	unsigned long long from;
8
	unsigned long long to;
9
	const char* channel;
10
} web_range_t;
10 nishi 11
 
13 nishi 12
typedef struct {
13
	char* username;
14
	char* message;
15
	unsigned long long time;
16
} entry_t;
17
 
18
entry_t** web_db_query(web_range_t range);
19
 
10 nishi 20
#endif