Important:
This is retired content. This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.
A version of this page is also available for
4/8/2010

This function determines the source of a keyboard message.

Syntax

UINT GetMessageSource( ); 

Return Value

MSGSRC_SOFTWARE_POST indicates that the message source was software. MSGSRC_HARDWARE_KEYBOARD indicates that the message source was the keyboard. MSGSRC_UNKNOWN indicates that the message source is unknown.

Remarks

When targeting devices that support both a hardware keyboard and a soft keyboard, you can use the GetMessageSourcefunction to determine the source of a keyboard input message. Keyboard events that originate from the keyboard driver or keybd_eventare marked as hardware. Messages generated from PostMessageare marked as software.

Use this function to determine the source of the following messages:

Requirements

Header winuser.h
Library coredll.lib
Windows Embedded CE Windows CE 2.0 and later
Windows Mobile Windows Mobile Version 5.0 and later

See Also