Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/mfc/tn011-using-mfc-as-part-of-a-dll.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <atlstr.h>` 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.
Expand Down