PRB: ClassWizard Doesn't Bring in Proper Header File

Last reviewed: June 26, 1997
Article ID: Q155133
The information in this article applies to:
  • The Microsoft Foundation Classes (MFC) included with: - Microsoft Visual C++ 32-bit Edition versions 4.2, 5.0

SYMPTOMS

After creating a new class derived from either CSocket or CAsyncSocket using the ClassWizard, one of the following errors occur during compilation:

   error C2504: 'CSocket' : base class undefined
   error C2504: 'CAsyncSocket' : base class undefined

CAUSE

ClassWizard allows you to derive a class directly from CSocket or CAsyncSocket; however, it does not pull in the required header file where these classes are declared. Therefore, the compiler displays an error message reflecting that CSocket or CAsyncSocket was not defined.

RESOLUTION

Include the header file, afxsock.h, into your project, preferably in your project's StdAfx.h header file:

     ...
     #include <afxsock.h>  //MFC support for Sockets
     ...

STATUS

Microsoft has confirmed this to be a problem in the Microsoft products listed at the beginning of this article. We are researching this problem and will post new information here in the Microsoft Knowledge Base as it becomes available.

MORE INFORMATION

The header file, afxsock.h, contains the class definitions for CAsyncSocket and CSocket. If you are using these classes or any classes that are derived from these classes, you must make sure to include afxsock.h in your project. Also note that if you use AppWizard to start your project and select the Socket Support option on the fourth page of the wizard, you will automatically get afxsock.h inserted into your StdAfx.h file. In addition, you will get the function call, AfxSocketInit(), inserted into your project. This is very important because you must make a call to AfxSocketInit() if you want to use Sockets in your MFC application. This function is usually called from your InitInstance() method of your CWinApp derived object.

   BOOL CMyApp::InitInstance()
   {

        if (!AfxSocketInit())
        {
             AfxMessageBox("Socket Initialization Failed");
             return FALSE;
        }

        ...
   }
 

	
	


Keywords : kbprg MfcSockets
Technology : kbMfc
Version : 4.2 5.0
Platform : NT WINDOWS
Issue type : kbprb


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: June 26, 1997
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.