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

Difference between revisions of "Talk:/dev/mcp"

From WiiUBrew
Jump to navigation Jump to search
m
Line 1: Line 1:
 
What coresspond to the Permission tab ? 0x0002 = ? (Userland / Kernel) ?
 
What coresspond to the Permission tab ? 0x0002 = ? (Userland / Kernel) ?
 +
 +
The balance of the Ioctl/Ioctlv use dupe numbers, for example:
 +
 +
  MCP_GetTitleInfo 0x58
 +
  MCP_GetTitleInfoByDevice 0x58
 +
  MCP_GetTitleInfoByTitleAndDevice 0x58
 +
  MCP_GetTitleInfoByTitleAndDeviceType         0x58
 +
  MCP_GetTitleInfoByTitleAndIndexedDevice 0x58
 +
 +
...plus another 10 more use 0x58
 +
(there are other commands that also have more than one function)
 +
Any good idea's on how to distinguish them from each other?

Revision as of 11:22, 26 April 2016

What coresspond to the Permission tab ? 0x0002 = ? (Userland / Kernel) ?

The balance of the Ioctl/Ioctlv use dupe numbers, for example:

  MCP_GetTitleInfo				0x58
  MCP_GetTitleInfoByDevice			0x58
  MCP_GetTitleInfoByTitleAndDevice		0x58
  MCP_GetTitleInfoByTitleAndDeviceType	        0x58
  MCP_GetTitleInfoByTitleAndIndexedDevice	0x58

...plus another 10 more use 0x58 (there are other commands that also have more than one function) Any good idea's on how to distinguish them from each other?