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.

27 lines
733 B

  1. // USBPort.h: interface for the CUSBPort class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_USBPORT_H__07A29C2C_7517_4A19_936D_CADB7735C567__INCLUDED_)
  5. #define AFX_USBPORT_H__07A29C2C_7517_4A19_936D_CADB7735C567__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "precomp.h"
  10. class CUSBPort : public CBasePort
  11. {
  12. public:
  13. CUSBPort( BOOL bActive, LPTSTR pszPortName, LPTSTR pszDevicePath );
  14. ~CUSBPort();
  15. PORTTYPE getPortType( void );
  16. void setPortDesc( LPTSTR pszPortDesc );
  17. void setMaxBuffer(DWORD dwMaxBufferSize);
  18. protected:
  19. };
  20. #endif // !defined(AFX_USBPORT_H__07A29C2C_7517_4A19_936D_CADB7735C567__INCLUDED_)