myinternetsession.h

来自「该程序是mobile5.0 ppc2003系统下的」· C头文件 代码 · 共 38 行

H
38
字号
// MyInternetSession.h: interface for the CMyInternetSession class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_MYINTERNETSESSION_H__3993A597_43B0_4299_A778_DC68D0859ED2__INCLUDED_)
#define AFX_MYINTERNETSESSION_H__3993A597_43B0_4299_A778_DC68D0859ED2__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "afxinet.h"

class CMyInternetSession : public CInternetSession  
{
public:
	//	CMyInternetSession();//INTERNET_OPEN_TYPE_PRECONFIG
	CMyInternetSession(LPCTSTR pstrAgent = NULL, DWORD dwContext = 1, DWORD dwAccessType =PRE_CONFIG_INTERNET_ACCESS , LPCTSTR pstrProxyName = NULL, LPCTSTR pstrProxyBypass = NULL, DWORD dwFlags = 0 ) 
		: CInternetSession(pstrAgent, dwContext, dwAccessType,
		pstrProxyName, pstrProxyBypass, dwFlags) 
	{ 	m_pMainWnd = NULL;	};
	
	virtual ~CMyInternetSession();
public:
	
	// Attributes
public:
	HWND m_pMainWnd;  // pointer to parent window
	CString m_strHttpSite;  // current URL 
	// Operations
public:
	
	virtual void OnStatusCallback(DWORD dwContext, DWORD dwInternetStatus,
		LPVOID lpvStatusInfomration, DWORD dwStatusInformationLen);
	
};

#endif // !defined(AFX_MYINTERNETSESSION_H__3993A597_43B0_4299_A778_DC68D0859ED2__INCLUDED_)

⌨️ 快捷键说明

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