]> git.zerfleddert.de Git - rigol/blame_incremental - scope.h
add unused variables in struct scope
[rigol] / scope.h
... / ...
CommitLineData
1struct scope {
2 struct {
3 struct usb_dev_handle *dev;
4 int ep_bulk_out;
5 unsigned int wMaxPacketSize_out;
6 int ep_bulk_in;
7 unsigned int wMaxPacketSize_in;
8 } usb;
9 char idn[128];
10};
11
12int sendscpi(struct scope* sc, char* cmd, unsigned char *resp, int resplen);
13struct scope* initscope(void);
14void closescope(struct scope* sc);
15void claimscope(struct scope* sc);
16void releasescope(struct scope* sc);
17char *scope_idn(struct scope *sc);
Impressum, Datenschutz