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.

62 lines
854 B

  1. /*++
  2. Copyright (c) 1997-1998 Microsoft Corporation
  3. Module Name:
  4. stidev.h
  5. Abstract:
  6. Prototypes for commonly used STI related routines
  7. Notes:
  8. Author:
  9. Vlad Sadovsky (VladS) 9/23/1998
  10. Environment:
  11. User Mode - Win32
  12. Revision History:
  13. 9/23/1998 VladS Created
  14. --*/
  15. #ifdef __cplusplus
  16. extern "C"{
  17. #endif
  18. HRESULT
  19. VenStiGetDeviceByModelID(
  20. LPCTSTR lpszModelID,
  21. LPCTSTR lpszVendor,
  22. LPCTSTR lpszFriendlyName,
  23. LPWSTR pStiDeviceName
  24. );
  25. BOOL
  26. VenStiInitializeDeviceCache(
  27. VOID
  28. );
  29. BOOL
  30. VenStiTerminateDeviceCache(
  31. VOID
  32. );
  33. HRESULT
  34. VenStiGetDeviceInterface(
  35. LPWSTR pStiDeviceName,
  36. PSTIDEVICE *ppStiDevice
  37. );
  38. #ifdef __cplusplus
  39. };
  40. #endif