data = TFGetUnitData(which_unit)
struct TrackFileUnitData * TFGetUnitData(LONG which_unit)
You can retrieve information about the current state of each trackfile.device unit which may be suitable for display in a form comparable to the AmigaDOS "Info" shell command.
Information includes whether or not a disk image file is currently used by the unit, the name of that disk image file, which AmigaDOS file system device name the unit uses (if any), which checksum the disk image file has, and whether this is a bootable disk.
You can retrieve information for individual unit as well as ask for the complete list of currently active units.
The data structure returned by TFGetUnitData() must be released with
TFFreeUnitData() when it is no longer needed.
TFGetUnitData() will return a "snapshot" of the current state of the respective units. Each such snapshot represents an independent, complete copy of the unit state information and will need to be released when no longer needed. More active units will require more memory to store the snapshot.
<devices/trackdisk.h>, <devices/trackfile.h>,
TFFreeUnitData()