ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/ermyth/include/news.h
Revision: 1.4
Committed: Sun Sep 16 18:54:42 2007 UTC (16 years, 8 months ago) by pippijn
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Changes since 1.3: +9 -4 lines
Log Message:
#defines to enum

File Contents

# Content
1 /**
2 * news.h: Data structures for news information.
3 *
4 * Copyright © 2007 Pippijn van Steenhoven / The Ermyth Team
5 * Rights to this code are as documented in COPYING.
6 *
7 *
8 * Portions of this file were derived from sources bearing the following license:
9 * Copyright © 2005 William Pitcock, et al.
10 * Rights to this code are as documented in doc/pod/license.pod.
11 *
12 * $Id: news.h,v 1.3 2007-08-28 17:08:07 pippijn Exp $
13 */
14
15 #ifndef NEWS_H
16 #define NEWS_H
17
18 struct news_t
19 {
20 myuser_t *user;
21 time_t date;
22 char *text;
23 };
24
25 #endif