revert between 56095 -> 55830 in arch
[AROS.git] / rom / usb / shellapps / UPSTool.h
blob7916d3282b0b4ae27d2a64cceb288a0e05872a55
1 #ifndef UPSTOOL_H
2 #define UPSTOOL_H
4 struct NepClassUPS
6 struct Node nch_Node; /* Node linkage */
7 struct PsdDevice *nch_Device; /* Up linkage */
8 struct PsdConfig *nch_Config; /* Up linkage */
9 struct PsdInterface *nch_IF0; /* Up linkage */
10 struct PsdEndpoint *nch_IntEP; /* Int IN Endpoint */
11 struct PsdPipe *nch_EP0Pipe; /* Endpoint 0 pipe */
12 struct PsdPipe *nch_IntPipe; /* Int IN pipe */
13 struct Hook nch_ReleaseHook; /* Hook for release function */
14 struct Task *nch_Task; /* this task */
15 struct MsgPort *nch_TaskMsgPort; /* io message port */
16 UBYTE nch_Buf[64]; /* sending buffer */
17 UBYTE nch_Reply[64]; /* receiving buffer */
20 #endif /* UPSTOOL_H */