mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
455 B
34 lines
455 B
/**
|
|
Copyright(c) Maynard Electronics, Inc. 1984-89
|
|
|
|
|
|
Name: detdrive.h
|
|
|
|
Date Updated: $./FDT$ $./FTM$
|
|
|
|
Description: Contains function prototype for DetermineDriver.
|
|
|
|
Location: BE_PUBLIC
|
|
|
|
|
|
$log$
|
|
|
|
**/
|
|
/* $end$ include list */
|
|
|
|
#ifndef DETDRIVERFUNC
|
|
#define DETDRIVERFUNC
|
|
|
|
typedef
|
|
struct {
|
|
CHAR driver_name[9] ;
|
|
INT16 driver_type ;
|
|
} DET_DRIVER, *DET_DRIVER_PTR ;
|
|
|
|
BOOLEAN DetermineDriver( DET_DRIVER_PTR, INT16 ) ;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|