[Dicey-cvs] dicey/include diceydefs.h,1.2,1.3
Brought to you by:
christhecat,
w0nderd0g
From: <mad...@us...> - 2004-01-09 23:27:02
|
Update of /cvsroot/dicey/dicey/include In directory sc8-pr-cvs1:/tmp/cvs-serv16970/include Modified Files: diceydefs.h Log Message: intermediate commit for sharing across systems. the current code is very much in transition between cgi libraries Index: diceydefs.h =================================================================== RCS file: /cvsroot/dicey/dicey/include/diceydefs.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** diceydefs.h 14 Nov 2003 13:59:55 -0000 1.2 --- diceydefs.h 9 Jan 2004 23:26:59 -0000 1.3 *************** *** 53,62 **** }; ! enum idx_errors { ERR_IDX_OWN_DT = 0x0004, ERR_IDX_OPP_DT = 0x0008, ERR_IDX_GAME_NBR = 0x0010, ERR_IDX_DUP_DT = 0x0040, ! ERR_IDX_DUP_GAME_NBR = 0x0080 }; --- 53,72 ---- }; ! enum index_errors { ERR_IDX_OWN_DT = 0x0004, ERR_IDX_OPP_DT = 0x0008, ERR_IDX_GAME_NBR = 0x0010, ERR_IDX_DUP_DT = 0x0040, ! ERR_IDX_DUP_GAME_NBR = 0x0080, ! ERR_IDX_TECH_ROLLS = 0x0100 ! }; ! ! enum form_tech_idx { ! jet_power_idx = 0, ! rockets_idx, ! super_sub_idx, ! long_range_idx, ! ind_tech_idx, ! hvy_bomber_idx }; *************** *** 66,73 **** void htmlheader(FILE* fp, char* title); void er(char* msg, int value); ! void gamecreate(int game_nbr, char* own_dt, char* own_em, ! char* opp_dt, char* opp_em, int errors); ! void logincreate(int game_nbr, char* own_dogtag, char* opp_dogtag, ! int errors, int form_techs[6], long tech_roll); ! #endif --- 76,82 ---- void htmlheader(FILE* fp, char* title); void er(char* msg, int value); ! void gamecreate(int game_nbr, char* own_dt, char* own_em, ! char* opp_dt, char* opp_em, int errors); ! void logincreate(int game_nbr, char* own_dt, char* opp_dt, int errors, ! int form_techs[6], long tech_rolls); #endif |