Question 2 on GEOS device drivers

Edward Ballot (eballot@geoworks.com)
Mon, 9 Dec 1996 19:35:20 -0800 (PST)

> Does anybody know what the "driver" parameter in the .gp file means ? The
> syntax is driver <name> [noload].
> What is here the <name> parameter ?

the driver parameter tells GLUE to add a dependency for the named
driver. In essence, this is what happens when you add a driver (or
library) dependency:
- When your application launches, the system will attempt to
load the driver.
- If it is unable to load the driver, it will abort the application
launch with a "missing system file" or similar error.
- If the driver is found and loaded, the application will launch
with the assurance that the driver is loaded (so it doesn't have
to worry about failed attempts at loading the driver at some
later time).

Just my overly brief perspective.

-Ed-