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.
52 lines
652 B
52 lines
652 B
/*++
|
|
|
|
Module Name:
|
|
|
|
detec.h
|
|
|
|
Abstract:
|
|
|
|
Include file for detect.c
|
|
|
|
Author:
|
|
|
|
Dieter Achtelstetter (A-DACH) 8/4/1994
|
|
|
|
NOTE:
|
|
|
|
|
|
|
|
|
|
--*/
|
|
|
|
|
|
|
|
|
|
|
|
BOOL
|
|
FindOptionThatWouldClaimeDevice(
|
|
PDEVICEINFO TapeDeviceInfo);
|
|
|
|
VOID
|
|
SaveDriverInfoToDeviceInfo(
|
|
PDEVICEINFO TapeDeviceInfo,
|
|
char * OptionName);
|
|
|
|
|
|
BOOL
|
|
DoTapeDriverDetection(
|
|
HWND hDlg); //---- List of all current known option from the tape inf files in system32
|
|
|
|
LRESULT CALLBACK
|
|
TapeDetectInstall(
|
|
HWND hDlg,
|
|
UINT message,
|
|
WPARAM wParam,
|
|
LPARAM lParam);
|
|
|
|
LRESULT CALLBACK
|
|
UnknownDevices(
|
|
HWND hDlg,
|
|
UINT message,
|
|
WPARAM wParam,
|
|
LPARAM lParam);
|