home *** CD-ROM | disk | FTP | other *** search
- /*
- * Xceed Winsock Library Sample: Chat connectionless
- * Copyright (c) 2000 Xceed Software Inc.
- *
- * [ StdAfx.cpp : Precompiled source ]
- *
- * This is a minimal implementation of an HTTP server. It
- * only handles the "GET" HTTP command. When a "GET" command
- * is received from a connected client, the server will send
- * the requested file to the client. This is enough functionality
- * to display a web site with bitmaps and regular HTML files.
- *
- * In particular, it demonstrate:
- * - How to create and use a listening socket to handle
- * incoming connections.
- * - How to use string and file transfer interfaces.
- * - Using "#import" with the Xceed Winsock Library.
- * - Using ATL to help implement event interfaces.
- *
- * This file is part of the Xceed Winsock Library Samples.
- * The source code in this file is only intended as a supplement
- * to Xceed Winsock Library's documentation, and is provided "as is",
- * without warranty of any kind, either expressed or implied.
- *
- */
-
- #include "stdafx.h"
-
- #ifdef _ATL_STATIC_REGISTRY
- #include <statreg.h>
- #include <statreg.cpp>
- #endif
-
- #include <atlimpl.cpp>
-
- CComModule _Module;
-