12 lines
136 B
ObjectPascal
12 lines
136 B
ObjectPascal
|
|
uses System, System.Runtime.InteropServices;
|
||
|
|
|
||
|
|
type
|
||
|
|
|
||
|
|
[StructLayout(LayoutKind.&Explicit)]
|
||
|
|
TRec = record
|
||
|
|
a : integer;
|
||
|
|
end;
|
||
|
|
|
||
|
|
begin
|
||
|
|
|
||
|
|
end.
|