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.
62 lines
854 B
62 lines
854 B
/*++
|
|
|
|
Copyright (c) 1997-1998 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
stidev.h
|
|
|
|
Abstract:
|
|
|
|
Prototypes for commonly used STI related routines
|
|
|
|
Notes:
|
|
|
|
Author:
|
|
|
|
Vlad Sadovsky (VladS) 9/23/1998
|
|
|
|
Environment:
|
|
|
|
User Mode - Win32
|
|
|
|
Revision History:
|
|
|
|
9/23/1998 VladS Created
|
|
|
|
--*/
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"{
|
|
#endif
|
|
|
|
HRESULT
|
|
VenStiGetDeviceByModelID(
|
|
LPCTSTR lpszModelID,
|
|
LPCTSTR lpszVendor,
|
|
LPCTSTR lpszFriendlyName,
|
|
LPWSTR pStiDeviceName
|
|
);
|
|
|
|
BOOL
|
|
VenStiInitializeDeviceCache(
|
|
VOID
|
|
);
|
|
|
|
BOOL
|
|
VenStiTerminateDeviceCache(
|
|
VOID
|
|
);
|
|
|
|
HRESULT
|
|
VenStiGetDeviceInterface(
|
|
LPWSTR pStiDeviceName,
|
|
PSTIDEVICE *ppStiDevice
|
|
);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
};
|
|
#endif
|
|
|