1
0

ifc_deviceconnection.h 648 B

123456789101112131415161718192021222324
  1. #ifndef _NULLSOFT_WINAMP_DEVICES_DEVICE_CONNECTION_INTERFACE_HEADER
  2. #define _NULLSOFT_WINAMP_DEVICES_DEVICE_CONNECTION_INTERFACE_HEADER
  3. #if defined(_MSC_VER) && (_MSC_VER >= 1020)
  4. #pragma once
  5. #endif
  6. #include <bfc/platform/guid.h>
  7. // {0CF89CC5-AD4E-4c81-AF74-AB2FDB6F56CE}
  8. static const GUID IFC_DeviceConnection =
  9. { 0xcf89cc5, 0xad4e, 0x4c81, { 0xaf, 0x74, 0xab, 0x2f, 0xdb, 0x6f, 0x56, 0xce } };
  10. #include "ifc_deviceobject.h"
  11. class __declspec(novtable) ifc_deviceconnection : public ifc_deviceobject
  12. {
  13. protected:
  14. ifc_deviceconnection() {}
  15. ~ifc_deviceconnection() {}
  16. };
  17. #endif //_NULLSOFT_WINAMP_DEVICES_DEVICE_CONNECTION_INTERFACE_HEADER