API:Winapi.Messages.TWordFiller
Delphi
TWordFiller = record
{$IFDEF CPUX86}
Filler: array[1..2] of Byte; // Pad word make it 4 Bytes (2+2)
{$ENDIF}
{$IFDEF CPUX64}
Filler: array[1..6] of Byte; // Pad word to make it 8 Bytes (2+6)
{$ENDIF}
end;
C++
struct DECLSPEC_DRECORD TWordFiller
{
public:
System::StaticArray<System::Byte, 2> Filler;
};
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.