Representation of an *.info file
Source position: workbench.pas line 158
| type tDiskObject = record | ||
| do_Magic: Word; | 
 | A magic number at the start of the file | 
| do_Version: Word; | 
 | A version number, so we can change it | 
| do_Gadget: tGadget; | 
 | A copy of in core gadget | 
| do_Type: Byte; | 
 | Type for icons (WB*) | 
| do_DefaultTool: PChar; | 
 | |
| do_ToolTypes: Pointer; | 
 | List of ToolTypes | 
| do_CurrentX: LongInt; | 
 | Current X Position of Icon | 
| do_CurrentY: LongInt; | 
 | Current Y Position of Icon | 
| do_DrawerData: pDrawerData; | 
 | |
| do_ToolWindow: PChar; | 
 | Only applies to tools | 
| do_StackSize: LongInt; | 
 | Only applies to tools | 
| end; |