Поделиться через


ON_THREAD_MESSAGE

Indicates which function will handle a user-defined message.

ON_THREAD_MESSAGE(message, memberFxn )

Параметры

  • message
    The message ID.

  • memberFxn
    The name of the CWinThread-message-handler function to which the message is mapped.

Заметки

ON_THREAD_MESSAGE must be used instead of ON_MESSAGE when you have a CWinThread class. User-defined messages are any messages that are not standard Windows WM_MESSAGE messages. There should be exactly one ON_THREAD_MESSAGE macro statement in your message map for every user-defined message that must be mapped to a message-handler function.

Требования

Header: afxole.h

См. также

Основные понятия

MFC Macros and Globals

ON_MESSAGE

ON_REGISTERED_THREAD_MESSAGE

CWinThread Class