home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 September / Chip_2002-09_cd1.bin / zkuste / vbasic / Data / Utils / XZipComp.exe / XceedWinsock.Cab / F112766_StdAfx.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  2000-04-19  |  1.2 KB  |  37 lines

  1. /*
  2.  * Xceed Winsock Library Sample: Chat connectionless
  3.  * Copyright (c) 2000 Xceed Software Inc.
  4.  *
  5.  * [ StdAfx.cpp : Precompiled source ]
  6.  *
  7.  * This is a minimal implementation of an HTTP server. It
  8.  * only handles the "GET" HTTP command. When a "GET" command
  9.  * is received from a connected client, the server will send
  10.  * the requested file to the client. This is enough functionality
  11.  * to display a web site with bitmaps and regular HTML files.
  12.  *
  13.  * In particular, it demonstrate:
  14.  *  - How to create and use a listening socket to handle
  15.  *    incoming connections.
  16.  *  - How to use string and file transfer interfaces.
  17.  *  - Using "#import" with the Xceed Winsock Library.
  18.  *  - Using ATL to help implement event interfaces.
  19.  *
  20.  * This file is part of the Xceed Winsock Library Samples.
  21.  * The source code in this file is only intended as a supplement
  22.  * to Xceed Winsock Library's documentation, and is provided "as is", 
  23.  * without warranty of any kind, either expressed or implied.
  24.  *
  25.  */
  26.  
  27. #include "stdafx.h"
  28.  
  29. #ifdef _ATL_STATIC_REGISTRY
  30. #include <statreg.h>
  31. #include <statreg.cpp>
  32. #endif
  33.  
  34. #include <atlimpl.cpp>
  35.  
  36. CComModule  _Module;
  37.