PRB: Statically linked MFC App Causes Trouble on Win32s

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

SYMPTOMS

An MFC application that statically links to the MFC library may cause strange problems when it's run under Win32s.

One known problem with static MFC applications in Win32s occurs when one static MFC application is started and then two instances of another MFC application that dynamically links to MFC in the Shared Library (Mfc40.dll) are run. The second instance of the Shared Lib MFC application will fail and return this message:

   Win32s - Error. Initialization of dynamic link library failed.
   The process is terminating abnormally.

CAUSE

The static MFC library uses the static version of the C Run-Time Library. However, the static version of the C Run-Time Library was not designed to be used in Win32s.

Visual C++ versions 4.2 and later do not support building Win32s applications.

RESOLUTION

Change the build settings for the application linking to MFC in the static library to use MFC in the Shared Library (Mfc40.dll).

There are special versions of the Mfc40.dll and Msvcrt40.dll for running under the Win32s platform that can be found in the \Win32s\Redist directory on the Visual C++ 4.0 CD-ROM. These two DLLs will need to be distributed with the new application.

REFERENCES

For more information, please see the following article in the Microsoft Knowledge Base:

   ARTICLE-ID: Q149412
   TITLE     : Must Build Win32s Apps by Using C Run-Time (CRT) Libraries
 

	
	


Keywords : kbprg MfcMisc W32s
Technology : kbMfc
Version : 4.0 4.1
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.