This is the extension to EXEC Messages used by DOS
Source position: amigados.pas line 615
type tDosPacket = record |
||
dp_Link: pMessage; |
|
Exec Message |
dp_Port: pMsgPort; |
|
Reply port for the packet. Must be filled in each send. |
case SmallInt of |
||
0: ( |
||
dp_Action: LongInt; |
|
|
dp_Status: LongInt; |
|
|
dp_Status2: LongInt; |
|
|
dp_BufAddr: LongInt; |
|
|
); |
||
1: ( |
||
dp_Type: LongInt; |
|
Type of access =Ord('W') write = Ord('R') read (ACTION_*) |
dp_Res1: LongInt; |
|
|
dp_Res2: LongInt; |
|
|
dp_Arg1: LongInt; |
|
|
dp_Arg2: LongInt; |
|
|
dp_Arg3: LongInt; |
|
|
dp_Arg4: LongInt; |
|
|
dp_Arg5: LongInt; |
|
|
dp_Arg6: LongInt; |
|
|
dp_Arg7: LongInt; |
|
|
); |
||
end; |