request.h
来自「该程序完全是为了演示HTTP的客户编写的」· C头文件 代码 · 共 25 行
H
25 行
// Request.h: interface for the CRequest class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_REQUEST_H__8F736945_170C_4079_915A_FD55E3D42048__INCLUDED_)
#define AFX_REQUEST_H__8F736945_170C_4079_915A_FD55E3D42048__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CRequest : public CObject
{
public:
int StuffString( const CString& strData );
void StuffHead(CString method, CString lpszURL);
CRequest();
virtual ~CRequest();
CByteArray m_buf;
CString m_strLine;
LONG m_cbOut;
};
#endif // !defined(AFX_REQUEST_H__8F736945_170C_4079_915A_FD55E3D42048__INCLUDED_)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?