d40d5355b8
协议栈增加允许class在windows环境下枚举时向系统注册附加属性。并在winusb class中提供范例(注册GUID信息)
24 lines
548 B
C
24 lines
548 B
C
/*
|
|
* File : winusb.h
|
|
* COPYRIGHT (C) 2008 - 2016, RT-Thread Development Team
|
|
*
|
|
* Change Logs:
|
|
* Date Author Notes
|
|
* 2017-11-16 ZYH first version
|
|
*/
|
|
#ifndef __WINUSB_H__
|
|
#define __WINUSB_H__
|
|
#include <rtthread.h>
|
|
struct winusb_descriptor
|
|
{
|
|
#ifdef RT_USB_DEVICE_COMPOSITE
|
|
struct uiad_descriptor iad_desc;
|
|
#endif
|
|
struct uinterface_descriptor intf_desc;
|
|
struct uendpoint_descriptor ep_out_desc;
|
|
struct uendpoint_descriptor ep_in_desc;
|
|
};
|
|
typedef struct winusb_descriptor* winusb_desc_t;
|
|
|
|
#endif
|