fcgiappmisc.h

来自「php-4.4.7学习linux时下载的源代码」· C头文件 代码 · 共 51 行

H
51
字号
/*  * fcgiappmisc.h -- * *      Functions implemented by fcgiapp.h that aren't needed *      by normal applications, but may be useful to special *      applications. * * * Copyright (c) 1996 Open Market, Inc. * * See the file "LICENSE.TERMS" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * * $Id: fcgiappmisc.h,v 1.1 2002/03/10 21:39:28 shane Exp $ */#ifndef _FCGIAPPMISC_H#define _FCGIAPPMISC_H#include "fcgiapp.h"         /* for FCGX_Stream */#if defined (c_plusplus) || defined (__cplusplus)extern "C" {#endif#ifdef _WIN32#ifndef DLLAPI#ifdef FCGI_STATIC#define DLLAPI#else#define DLLAPI __declspec(dllimport)#endif#endif#else#define DLLAPI#endifDLLAPI FCGX_Stream *CreateWriter(        int socket,        int requestId,        int bufflen,        int streamType);DLLAPI void FreeStream(FCGX_Stream **stream);#if defined (__cplusplus) || defined (c_plusplus)} /* terminate extern "C" { */#endif#endif	/* _FCGIAPPMISC_H */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?