1 /* 2 * Copyright 2007, Ingo Weinhold, ingo_weinhold@gmx.de. 3 * All rights reserved. Distributed under the terms of the MIT license. 4 */ 5 6 #ifndef RAMFS_IOCTL_H 7 #define RAMFS_IOCTL_H 8 9 #include <Drivers.h> 10 11 #define RAMFS_IOCTL_BASE (B_DEVICE_OP_CODES_END + 10001) 12 13 enum { 14 RAMFS_IOCTL_GET_ALLOCATION_INFO = RAMFS_IOCTL_BASE, // AllocationInfo* 15 RAMFS_IOCTL_DUMP_INDEX, // const char* name 16 }; 17 18 #endif // RAMFS_IOCTL_H 19