This is how the base of dos.library looks like.
Source position: amigados.pas line 569
type TDOSLibrary = packed record |
||
dl_Lib: TLibrary; |
|
|
dl_Root: PRootNode; |
|
Pointer to RootNode |
dl_GU: Pointer; |
|
|
dl_A2: LongInt; |
|
|
dl_A5: LongInt; |
|
|
dl_A6: LongInt; |
|
|
dl_Errors: PErrorString; |
|
Pointer to array of error msgs |
dl_TimeReq: PTimeRequest; |
|
Private pointer to timer request |
dl_UtilityBase: PLibrary; |
|
Private ptr to utility library |
dl_IntuitionBase: PLibrary; |
|
Private ptr to intuition library |
end; |