GetMessageExtraInfo function
Applies to: desktop apps only
Retrieves the extra message information for the current thread. Extra message information is an application- or driver-defined value associated with the current thread's message queue.
Syntax
LPARAM WINAPI GetMessageExtraInfo(void);
Parameters
This function has no parameters.
Return value
Type:
Type: LPARAM
The return value specifies the extra information. The meaning of the extra information is device specific.
Remarks
To set a thread's extra message information, use the SetMessageExtraInfo function.
Requirements
|
Minimum supported client | Windows 2000 Professional |
|---|---|
|
Minimum supported server | Windows 2000 Server |
|
Header |
|
|
Library |
|
|
DLL |
|
See also
- Reference
- GetMessage
- PeekMessage
- SetMessageExtraInfo
- Conceptual
- Messages and Message Queues
Send comments about this topic to Microsoft
Build date: 2/3/2012
C# syntax
[DllImport("user32.dll", CharSet=CharSet.Auto)]
internal static extern IntPtr GetMessageExtraInfo();
- 4/27/2009
- dmex