Leaked source code of windows server 2003
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.
|
|
/*++
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
|