diff --git a/docs/mfc/tn011-using-mfc-as-part-of-a-dll.md b/docs/mfc/tn011-using-mfc-as-part-of-a-dll.md index 6036c01612..804da8bee7 100644 --- a/docs/mfc/tn011-using-mfc-as-part-of-a-dll.md +++ b/docs/mfc/tn011-using-mfc-as-part-of-a-dll.md @@ -51,6 +51,8 @@ You must add the AFX_MANAGE_STATE macro at the beginning of all the exported fun `AFX_MANAGE_STATE(AfxGetStaticModuleState( ))` +Note: New generated MFC projects and DLLs with pch.h headers must explicitly include *afxmfc* header files which are used in your code. For example, using CString requires you to `include ` in your pch.h. + ## WinMain -> DllMain The MFC library defines the standard Win32 `DllMain` entry point that initializes your [CWinApp](../mfc/reference/cwinapp-class.md) derived object as in a typical MFC application. Place all DLL-specific initialization in the [InitInstance](../mfc/reference/cwinapp-class.md#initinstance) method as in a typical MFC application.