VC++ Dll 프로그램 소스-인터넷 연결
- 최초 등록일
- 2000.06.12
- 최종 저작일
- 2000.06
- 1페이지/
압축파일
- 가격 1,000원

소개글
본 dll은 CInternetSession을 이용하여 HTML문서를 가져오는 프로그램이다.
비주얼씨++ 6.0으로 작성하였슴다.
shared mfc로 작성하였으므로.....
vc가 깔린 컴에서만 동작함다.....
리턴형이 CString이므로....
vc++이외의 프로그램에서는 사용하지 못합니다.
자세한 내용은 readme.txt를 참조하세요
목차
없음
본문내용
/ ConnManager.cpp : Defines the initialization routines for the DLL.
//
#include "stdafx.h"
#include "ConnManager.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
//
// Note!
//
// If this DLL is dynamically linked against the MFC
// DLLs, any functions exported from this DLL which
// call into MFC must have the AFX_MANAGE_STATE macro
// added at the very beginning of the function.
//
// For example:
//
// extern "C" BOOL PASCAL EXPORT ExportedFunction()
// {
// AFX_MANAGE_STATE(AfxGetStaticModuleState());
// // normal function body here
// }
//
// It is very important that this macro appear in each
// function, prior to any calls into MFC. This means that
// it must appear as the first statement within the
// function, even before any object variable declarations
// as their constructors may generate calls into the MFC
// DLL.
//
// Please see MFC Technical Notes 33 and 58 for additional
// details.
//
참고 자료
없음
압축파일 내 파일목록
ConnManager.dll
ConnManager.lib
ConnManager_source.zip
readme.txt