blob: 3a520d6e797d0fd07620241cb4217b2a4d3880ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef PAR_DEVICE_H
#define PAR_DEVICE_H
struct list_devices {
char *name;
char *description;
};
struct list_devices *getInputDeviceList(int *len);
void freeDeviceList(struct list_devices *list, int len);
#endif /* PAR_DEVICE_H */
|