In memory of Ben “bushing” Byer, who passed away on Monday, February 8th, 2016.

Difference between revisions of "IOS/Resource request"

From WiiBrew
< IOS
Jump to navigation Jump to search
m (Robot: Cosmetic changes)
m (not sure what this page is about, but it's spelled wrong :))
Line 1: Line 1:
struct ios_ressource_request {
+
struct ios_resource_request {
     enum IOS_ressouce_cmd cmd;
+
     enum IOS_resource_cmd cmd;
 
     /* ... to be continued */
 
     /* ... to be continued */
 
  };
 
  };
  
  
  enum IOS_ressouce_cmd {
+
  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
}