]> git.zerfleddert.de Git - rigol/blame - scope.h
add unused variables in struct scope
[rigol] / scope.h
CommitLineData
713be7a4 1struct scope {
7906b395
MG
2 struct {
3 struct usb_dev_handle *dev;
fc648ed8
MG
4 int ep_bulk_out;
5 unsigned int wMaxPacketSize_out;
6 int ep_bulk_in;
7 unsigned int wMaxPacketSize_in;
7906b395 8 } usb;
713be7a4
MG
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