代码搜索:structs

找到约 2,696 项符合「structs」的源代码

代码结果 2,696
www.eeworm.com/read/288095/4009968

h common.h

/* * common.h -- defines and structs used by the config files. * * Copyright (C) 2003 Maik Broemme * * This program is free software; you can redistribute it and/or mo
www.eeworm.com/read/282003/4110337

java usbio_query_pipe_statistics.java

package de.thesycon.usbio.structs; /** * The USBIO_QUERY_PIPE_STATISTICS class provides options that modify the behaviour * of the IOCTL_USBIO_QUERY_PIPE_STATISTICS operation. * This structur
www.eeworm.com/read/282003/4110338

java usbio_device_parameters.java

package de.thesycon.usbio.structs; /** * The USBIO_DEVICE_PARAMETERS class contains USBIO driver settings related to a device. * This structure is intended to be used with the * IOCTL_USBIO_G
www.eeworm.com/read/282003/4110346

java usbio_bandwidth_info.java

package de.thesycon.usbio.structs; /** * The USBIO_BANDWIDTH_INFO class contains information on the USB bandwidth consumption. * This structure returns the results of the IOCTL_USBIO_GET_BANDWI
www.eeworm.com/read/282003/4110352

java usbio_interface_configuration_info.java

package de.thesycon.usbio.structs; /** * The USBIO_INTERFACE_CONFIGURATION_INFO class provides information about an interface. * This structure returns results of the IOCTL_USBIO_GET_CONFIGURAT
www.eeworm.com/read/282003/4110358

java usbio_iso_packet.java

package de.thesycon.usbio.structs; /** * The USBIO_ISO_PACKET class defines the size and location of a single * isochronous data packet within an isochronous data transfer buffer. */ public
www.eeworm.com/read/282003/4110359

java usbio_class_or_vendor_request.java

package de.thesycon.usbio.structs; /** * The USBIO_CLASS_OR_VENDOR_REQUEST class provides information used to * generate a class or vendor specific device request. * The values defined by thi
www.eeworm.com/read/282003/4110362

java usbio.java

package de.thesycon.usbio; import de.thesycon.usbio.structs.*; /** * This class implements the interface to the USBIO device driver. * It contains only general device-related functions that
www.eeworm.com/read/274377/4186515

java struct.java

package structs; public class Struct extends Link { public String Name; public String Conduct; public Struct SubStruct; public String KeyWords; public Key key; public SeekProxy seeker;
www.eeworm.com/read/274377/4186519

java link.java

package structs; public class Link { public Link Next; public String ClassName(){ return "Link"; } public void add(Link node) { Link pos=this; while(pos.Next!=null){