summaryrefslogtreecommitdiffstats
path: root/Src/devices/ifc_devicetype.h
blob: e03aaa68679577664bab3fe5a86e3168c5b10b02 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#ifndef _NULLSOFT_WINAMP_DEVICES_DEVICE_TYPE_INTERFACE_HEADER
#define _NULLSOFT_WINAMP_DEVICES_DEVICE_TYPE_INTERFACE_HEADER

#if defined(_MSC_VER) && (_MSC_VER >= 1020)
#pragma once
#endif

#include <bfc/platform/guid.h>

// {C2AB1F06-1D88-4d21-A8F4-1B36A1929281}
static const GUID IFC_DeviceType = 
{ 0xc2ab1f06, 0x1d88, 0x4d21, { 0xa8, 0xf4, 0x1b, 0x36, 0xa1, 0x92, 0x92, 0x81 } };


#include "ifc_deviceobject.h"

class __declspec(novtable) ifc_devicetype : public ifc_deviceobject
{
protected:
	ifc_devicetype() {}
	~ifc_devicetype() {}

};

#endif //_NULLSOFT_WINAMP_DEVICES_DEVICE_TYPE_INTERFACE_HEADER