96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
int okWrWiki; /* edit wiki via web */
int okNewWiki; /* create new wiki via web */
int okApndWiki; /* append to wiki via web */
int okPassword; /* change password */
int okAdmin; /* administrative permission */
int okDelete; /* delete wiki or tickets */
int okQuery; /* create new reports */
FILE *fDebug; /* Write debug information here, if the file exists */
};
/*
** Macro for debugging:
*/
|
>
|
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
int okWrWiki; /* edit wiki via web */
int okNewWiki; /* create new wiki via web */
int okApndWiki; /* append to wiki via web */
int okPassword; /* change password */
int okAdmin; /* administrative permission */
int okDelete; /* delete wiki or tickets */
int okQuery; /* create new reports */
int okHistory; /* access historical information */
FILE *fDebug; /* Write debug information here, if the file exists */
};
/*
** Macro for debugging:
*/
|