Dummy commit to test new ssh key
[eleutheria.git] / cdev / mydev.h
blob76b7f0032943dd29b4ffe502dddeb393b240775a
1 /*
3 * Definitions for the Mydev pseudo device.
5 */
6 #include <sys/param.h>
7 #include <sys/device.h>
9 #ifndef MYDEV_H
10 #define MYDEV_H
12 #define MAX_STR 80
14 struct mydev_params
16 int number;
17 char string[MAX_STR];
20 #define MYDEVOLDIOCTL _IOW('M', 0x1, struct mydev_params)
21 #define MYDEVSETPROPS _IOW('M', 0x2, struct plistref)
23 #ifdef _KERNEL
26 * Put kernel inter-module interfaces here, this
27 * pseudo device has none.
30 #endif /* _KERNEL */
31 #endif /* MYDEV_H */