"Fossies" - the Fresh Open Source Software Archive 
Member "cgiwrap-4.1/msgs.h" (16 Jun 2008, 1902 Bytes) of package /linux/www/old/cgiwrap-4.1.tar.gz:
As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting (style:
standard) with prefixed line numbers and
code folding option.
Alternatively you can here
view or
download the uninterpreted source code file.
1 /*
2 * CGIWrap is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License as published by
4 * the Free Software Foundation; either version 2 of the License, or
5 * (at your option) any later version.
6 *
7 * CGIWrap is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
11 *
12 * You should have received a copy of the GNU General Public License
13 * along with CGIWrap; if not, write to the Free Software
14 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
15 *
16 * Copyright 2003-2005, Nathan Neulinger <nneul@neulinger.org>
17 *
18 */
19
20 /* rcsid: $Id: msgs.h 306 2008-06-13 14:02:02Z nneul $ */
21
22 /**
23 ** File: messages.h
24 ** Purpose: Prototypes and defines for routines in messages.c
25 **/
26
27 extern int MSG_HTMLMessages;
28 extern int MSG_QuietErrors;
29 extern int MSG_Need_NPH_Header;
30
31 void MSG_ContentType(char *typestring);
32 void MSG_Header(char *title, char *msg);
33 void MSG_Footer(void);
34 void MSG_HTML_Header(char *title, char *msg);
35 void MSG_HTML_Footer(void);
36 void MSG_Plain_Header(char *title, char *msg);
37 void MSG_Plain_Footer(void);
38 void MSG_Error_General(char *message);
39 void MSG_Error_ServerUser(char *msg);
40 void MSG_Error_ExecutionNotPermitted(char *path, char *reason);
41 void MSG_Error_SystemError(char *when);
42 void MSG_Error_AccessControl(char *why, char *allowfile, char *denyfile);
43 void MSG_Error_ExecFailed(void);
44 void MSG_Error_NoSuchUser(char *user);
45 void MSG_Error_NoScriptDir(void);
46 void MSG_Error_ServerConfigError(void);
47 void MSG_Error_RequestError(void);
48
49 void MSG_Info(void);
50 void MSG_Error_ServerUserMismatch(void);
51 void MSG_Error_ServerUserNotFound(void);
52 void MSG_BoxedText(char *string);
53 void MSG_Error_CGIWrapNotSetUID(void);