PC SOFT

PROFESSIONAL NEWSGROUPS
WINDEVWEBDEV and WINDEV Mobile

Home → WINDEV 2024 → The C language structure convert to windev structure?
The C language structure convert to windev structure?
Started by Yuhong Tao, May, 24 2020 4:18 PM - 1 reply
Posted on May, 24 2020 - 4:18 PM
Dear
The C language structure:
struct usb_device
{
struct usb_device *next, *prev;

char filename[LIBUSB_PATH_MAX];

struct usb_bus *bus;

struct usb_device_descriptor descriptor;
struct usb_config_descriptor *config;

void *dev; /* Darwin support */

unsigned char devnum;

unsigned char num_children;
struct usb_device **children;
};

struct usb_bus
{
struct usb_bus *next, *prev;

char dirname[LIBUSB_PATH_MAX];

struct usb_device *devices;
unsigned long location;

struct usb_device *root_dev;
};

In windev why to do so?

thanks
Registered member
123 messages
Popularité : +7 (9 votes)
Posted on June, 08 2020 - 10:39 AM
Hi Tao,

Here's the solution




Enjoy

--
Peter Holemans
www.mcs2.eu