* See the file "LICENSE.TERMS" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * $Id: fcgiapp.h,v 1.11 2001/11/17 03:58:30 robs Exp $
+ * $Id: fcgiapp.h,v 1.12 2001/11/21 21:10:11 robs Exp $
*/
#ifndef _FCGIAPP_H
#include <varargs.h>
#endif
-#ifndef DLLAPI\r
-#ifdef _WIN32\r
-#define DLLAPI __declspec(dllimport)\r
-#else\r
-#define DLLAPI\r
-#endif\r
-#endif\r
-\r
+#ifndef DLLAPI
+#ifdef _WIN32
+#define DLLAPI __declspec(dllimport)
+#else
+#define DLLAPI
+#endif
+#endif
+
#if defined (c_plusplus) || defined (__cplusplus)
extern "C" {
#endif
/*
*----------------------------------------------------------------------
*
- * FCGX_Peek --
- *
- * Return the next byte without removing it from the stream.
- *
- * Results:
- * The byte, or EOF if the end of input has been reached.
- *
- *----------------------------------------------------------------------
- */
-DLLAPI int FCGX_Peek(FCGX_Stream * stream);\r
-
-/*
- *----------------------------------------------------------------------
- *
* FCGX_GetChar --
*
* Reads a byte from the input stream and returns it.