API:Winapi.Messages.TMessage

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TMessage = record

C++

struct DECLSPEC_DRECORD TMessage
{
public:
    unsigned Msg;
public:
    union
    {
        struct
        {
            System::Word WParamLo;
            System::Word WParamHi;
            System::Word LParamLo;
            System::Word LParamHi;
            System::Word ResultLo;
            System::Word ResultHi;
        };
        struct
        {
            unsigned WParam;
            int LParam;
            int Result;
        };
    };
};

Properties

Type Visibility Source Unit Parent
record
struct
public
Winapi.Messages.pas
Winapi.Messages.hpp
Winapi.Messages Winapi.Messages

Description

Embarcadero Technologies does not currently have any additional information.