Tizen 2.0 Release
[framework/graphics/cairo.git] / src / drm / cairo-drm-ioctl-private.h
1 #ifndef CAIRO_DRM_IOCTL_PRIVATE_H
2 #define CAIRO_DRM_IOCTL_PRIVATE_H
3
4 #define DRM_IOCTL_BASE                  'd'
5 #define DRM_IO(nr)                      _IO(DRM_IOCTL_BASE,nr)
6 #define DRM_IOR(nr,type)                _IOR(DRM_IOCTL_BASE,nr,type)
7 #define DRM_IOW(nr,type)                _IOW(DRM_IOCTL_BASE,nr,type)
8 #define DRM_IOWR(nr,type)               _IOWR(DRM_IOCTL_BASE,nr,type)
9
10 #define DRM_COMMAND_BASE                0x40
11
12 #endif /* CAIRO_DRM_IOCTL_PRIVATE_H */