?? cgiquery.h
字號:
#ifndef _INCLUDE_CGIQUERY_H_
#define _INCLUDE_CGIQUERY_H_
/*
** 庫名 : CGIQuery
** 庫描述 : 用于處理URL信息的CGI函數(shù)庫
** 作者 : calvin
** E-mail : CalvinWilliams@yeah.net
** QQ : 21021078
** 創(chuàng)建日期時間 :
** 更新日期時間 : 2005/5/2
*/
#include "LibX.h"
#include "TypeX.h"
#include "ListX.h"
#ifdef __cplusplus
extern "C" {
#endif
/*
** 函數(shù)集說明 : 調(diào)試函數(shù)集
*/
_WINDLL_EXPORT BOOL SetQueryDebugFileName( char *pcDebugPathFileName );
_WINDLL_EXPORT BOOL GetQueryDebugFileName( char *pcDebugPathFileName );
/*
** 函數(shù)集說明 : query數(shù)據(jù)鏈表初始化、銷毀函數(shù)
*/
_WINDLL_EXPORT SList *CGIQueryListInitial();
_WINDLL_EXPORT BOOL CGIQueryListDestroy( SList **listQuery );
/*
** 函數(shù)集說明 : query數(shù)據(jù)鏈表填充函數(shù)
*/
_WINDLL_EXPORT BOOL CGIQueryReadData( SList **listQuery );
/*
** 函數(shù)集說明 : query數(shù)據(jù)鏈表取值函數(shù)
*/
_WINDLL_EXPORT char *CGIQueryGetValue( SList *listQuery , char *key );
#ifdef __cplusplus
}
#endif
#endif
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -