Skip to content

add note regarding pch.h files #3963

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
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