/* Pirate Bulletin Board System Copyright (C) 1990, Edward Luke, lush@Athena.EE.MsState.EDU Eagles Bulletin Board System Copyright (C) 1992, Raymond Rocker, rocker@rock.b11.ingr.com Guy Vega, gtvega@seabass.st.usm.edu Dominic Tynes, dbtynes@seabass.st.usm.edu Firebird Bulletin Board System Copyright (C) 1996, Hsien-Tsung Chang, Smallpig.bbs@bbs.cs.ccu.edu.tw Peng Piaw Foong, ppfoong@csie.ncu.edu.tw This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 1, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. */ #define VOTE_YN (1) #define VOTE_SINGLE (2) #define VOTE_MULTI (3) #define VOTE_VALUE (4) #define VOTE_ASKING (5) struct ballot { char uid[IDLEN]; /* 投票人 */ unsigned int voted; /* 投票的內容 */ char msg[3][STRLEN]; /* 建議事項 */ }; struct votebal { char userid[IDLEN+1]; char title[STRLEN]; char type; char items[32][38]; int maxdays; int maxtkt; int totalitems; time_t opendate; } ;