summaryrefslogtreecommitdiff
path: root/example/fioc.h
blob: c1d9cdf2081ad3fcd56347201260b1919834bb1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
  FUSE-ioctl: ioctl support for FUSE
  Copyright (C) 2008       SUSE Linux Products GmbH
  Copyright (C) 2008       Tejun Heo <teheo@suse.de>

  This program can be distributed under the terms of the GNU GPL.
  See the file COPYING.
*/

#include <sys/types.h>
#include <sys/uio.h>
#include <sys/ioctl.h>

enum {
	FIOC_GET_SIZE = _IOR('E', 0, size_t),
	FIOC_SET_SIZE = _IOW('E', 1, size_t),
};