The pointer of this structure is returned by DosOpen() and other routines that return a file. You need only worry about this struct to do async io's via PutMsg() instead of standard file system calls
Source position: amigados.pas line 597
type tFileHandle = record |
||
fh_Link: pMessage; |
|
Exec message |
fh_Port: pMsgPort; |
|
Reply port for the packet |
fh_Type: pMsgPort; |
|
|
fh_Buf: LongInt; |
|
Port to do ReplyMsg() |
fh_Pos: LongInt; |
|
|
fh_End: LongInt; |
|
|
fh_Func1: LongInt; |
|
|
fh_Func2: LongInt; |
|
|
fh_Func3: LongInt; |
|
|
fh_Arg1: LongInt; |
|
|
fh_Arg2: LongInt; |
|
|
end; |