Now About Social Code
summaryrefslogtreecommitdiff
path: root/pvr_ioctl.h
blob: 5802079431c913fb068e390f0bd4ddb6ff970b68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef PVR_IOCTL_H
#define PVR_IOCTL_H

#if 0
#define PVRSRV_IOWR(INDEX) (INDEX)
#define PVRSRV_IOCTL(NAME, VALUE) NAME = (VALUE),

enum pvrsrv_ioctl {
#include "pvr_ioctl.inc"
};

#undef PVRSRV_IOCTL
#endif
#define PVRSRV_IOCTL(NAME, VALUE) [ _IOC_NR(NAME) ] = #NAME,

const char *pvrsrv_ioctl_names[] = {
#include "pvr_ioctl.inc"
};

#endif