Subversion Repositories IRC-Archiver

Rev

Rev 11 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 11 Rev 13
Line 1... Line 1...
1
/* $Id: web_db.h 11 2024-08-30 05:20:32Z nishi $ */
1
/* $Id: web_db.h 13 2024-08-30 07:33:43Z nishi $ */
2
 
2
 
3
#ifndef __WEB_DB_H__
3
#ifndef __WEB_DB_H__
4
#define __WEB_DB_H__
4
#define __WEB_DB_H__
5
 
5
 
6
typedef struct {
6
typedef struct {
7
	unsigned long long from;
7
	unsigned long long from;
8
	unsigned long long to;
8
	unsigned long long to;
9
	const char* channel;
9
	const char* channel;
10
} web_range_t;
10
} web_range_t;
11
 
11
 
-
 
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
 
12
#endif
20
#endif