(Page 15 of 28 in this chapter)
void myPrintDriverInfo(SWIHD hd)
{
SWI_DRIVERINFO_ARGS args;
unsigned size;
size = sizeof(SWI_DRIVERINFO_ARGS);
swiGetDriverInfo(hd, &args, size);
printf("%s\n", args.description);
printf("Revision %s Date %s\n", args.revision, args.date);
printf("%s\n", args.vendor);
}
(Page 15 of 28 in this chapter)