Difference between revisions of "IOS/Resource request"
< IOS
Jump to navigation
Jump to search
WiibrewBot (talk | contribs) m (Robot: Cosmetic changes) |
m (not sure what this page is about, but it's spelled wrong :)) |
||
Line 1: | Line 1: | ||
− | struct | + | struct ios_resource_request { |
− | enum | + | enum IOS_resource_cmd cmd; |
/* ... to be continued */ | /* ... to be continued */ | ||
}; | }; | ||
− | enum | + | enum IOS_resource_cmd { |
IOS_CMD_OPEN = 1, | IOS_CMD_OPEN = 1, | ||
IOS_CMD_CLOSE = 2, | IOS_CMD_CLOSE = 2, |
Revision as of 02:32, 29 May 2010
struct ios_resource_request {
enum IOS_resource_cmd cmd; /* ... to be continued */ };
enum IOS_resource_cmd { IOS_CMD_OPEN = 1, IOS_CMD_CLOSE = 2, IOS_CMD_READ = 3, IOS_CMD_WRITE = 4, IOS_CMD_SEEK = 5, IOS_CMD_IOCTL = 6, IOS_CMD_IOCTLV = 7 }