From a951027aeb3fb27c64c39188e10fdaa60d76fc8e Mon Sep 17 00:00:00 2001 From: MechaCat02 Date: Sun, 29 Mar 2026 17:44:52 +0200 Subject: [PATCH] refactor: switch export database from markdown to JSON parsing Add serde/serde_json for structured parsing of the export database, replacing the hand-rolled markdown table parser with type-safe JSON deserialization. Co-Authored-By: Claude Opus 4.6 --- Cargo.lock | 65 +- Cargo.toml | 4 +- doc/xbox360_exports.json | 33562 +++++++++++++++++++++++++++++++++++++ src/exports.rs | 112 +- 4 files changed, 33669 insertions(+), 74 deletions(-) create mode 100644 doc/xbox360_exports.json diff --git a/Cargo.lock b/Cargo.lock index f4db7ed..5f53ff5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -194,6 +194,12 @@ version = "1.70.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695" +[[package]] +name = "itoa" +version = "1.0.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682" + [[package]] name = "libc" version = "0.2.183" @@ -206,6 +212,12 @@ version = "0.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7b29dffab797218e12e4df08ef5d15ab9efca2504038b1b32b9b32fc844b39c9" +[[package]] +name = "memchr" +version = "2.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79" + [[package]] name = "once_cell_polyfill" version = "1.70.2" @@ -230,6 +242,49 @@ dependencies = [ "proc-macro2", ] +[[package]] +name = "serde" +version = "1.0.228" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" +dependencies = [ + "serde_core", + "serde_derive", +] + +[[package]] +name = "serde_core" +version = "1.0.228" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" +dependencies = [ + "serde_derive", +] + +[[package]] +name = "serde_derive" +version = "1.0.228" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "serde_json" +version = "1.0.149" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86" +dependencies = [ + "itoa", + "memchr", + "serde", + "serde_core", + "zmij", +] + [[package]] name = "strsim" version = "0.11.1" @@ -288,10 +343,18 @@ dependencies = [ [[package]] name = "xex2tractor" -version = "0.8.0" +version = "0.8.1" dependencies = [ "aes", "cbc", "clap", "lzxd", + "serde", + "serde_json", ] + +[[package]] +name = "zmij" +version = "1.0.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa" diff --git a/Cargo.toml b/Cargo.toml index 75753a2..4c9a01b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "xex2tractor" -version = "0.8.0" +version = "0.8.1" edition = "2024" description = "A tool for extracting and inspecting Xbox 360 XEX2 executable files" license = "MIT" @@ -10,3 +10,5 @@ aes = "0.8.4" cbc = "0.1.2" clap = { version = "4.6.0", features = ["derive"] } lzxd = "0.2.6" +serde = { version = "1", features = ["derive"] } +serde_json = "1" diff --git a/doc/xbox360_exports.json b/doc/xbox360_exports.json new file mode 100644 index 0000000..7b3fd0d --- /dev/null +++ b/doc/xbox360_exports.json @@ -0,0 +1,33562 @@ +{ + "description": "Xbox 360 system exports implemented in Xenia Canary", + "generator": "tools/generate_export_docs.py", + "statistics": { + "xboxkrnl": { + "total": 922, + "implemented": 263, + "stub": 49, + "sketchy": 3, + "not_implemented": 607, + "functions": 887, + "variables": 35 + }, + "xam": { + "total": 1736, + "implemented": 178, + "stub": 120, + "sketchy": 30, + "not_implemented": 1408, + "functions": 1734, + "variables": 2 + }, + "xbdm": { + "total": 255, + "implemented": 9, + "stub": 23, + "sketchy": 3, + "not_implemented": 220, + "functions": 255, + "variables": 0 + } + }, + "modules": { + "xboxkrnl": { + "file": "xboxkrnl.exe", + "exports": [ + { + "module": "xboxkrnl", + "ordinal": 1, + "ordinal_hex": "0x00000001", + "name": "DbgBreakPoint", + "type": "function", + "status": "stub", + "tags": [ + "Stub", + "Important" + ], + "category": "Debug", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_debug.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 2, + "ordinal_hex": "0x00000002", + "name": "DbgBreakPointWithStatus", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 3, + "ordinal_hex": "0x00000003", + "name": "DbgPrint", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_strings.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 4, + "ordinal_hex": "0x00000004", + "name": "DbgPrompt", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 5, + "ordinal_hex": "0x00000005", + "name": "DumpGetRawDumpInfo", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 6, + "ordinal_hex": "0x00000006", + "name": "DumpWriteDump", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 7, + "ordinal_hex": "0x00000007", + "name": "ExAcquireReadWriteLockExclusive", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "Blocking" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 8, + "ordinal_hex": "0x00000008", + "name": "ExAcquireReadWriteLockShared", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "Blocking" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 9, + "ordinal_hex": "0x00000009", + "name": "ExAllocatePool", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Memory", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_memory.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 10, + "ordinal_hex": "0x0000000A", + "name": "ExAllocatePoolWithTag", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Memory", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_memory.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 11, + "ordinal_hex": "0x0000000B", + "name": "ExAllocatePoolTypeWithTag", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Memory", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_memory.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 12, + "ordinal_hex": "0x0000000C", + "name": "ExConsoleGameRegion", + "type": "variable", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_module.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 13, + "ordinal_hex": "0x0000000D", + "name": "ExCreateThread", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 14, + "ordinal_hex": "0x0000000E", + "name": "ExEventObjectType", + "type": "variable", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_module.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 15, + "ordinal_hex": "0x0000000F", + "name": "ExFreePool", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Memory", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_memory.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 16, + "ordinal_hex": "0x00000010", + "name": "ExGetXConfigSetting", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Modules", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_xconfig.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 17, + "ordinal_hex": "0x00000011", + "name": "ExInitializeReadWriteLock", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 18, + "ordinal_hex": "0x00000012", + "name": "ExMutantObjectType", + "type": "variable", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_module.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 19, + "ordinal_hex": "0x00000013", + "name": "ExQueryPoolBlockSize", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 20, + "ordinal_hex": "0x00000014", + "name": "ExRegisterThreadNotification", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 21, + "ordinal_hex": "0x00000015", + "name": "ExRegisterTitleTerminateNotification", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Modules", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_modules.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 22, + "ordinal_hex": "0x00000016", + "name": "ExReleaseReadWriteLock", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 23, + "ordinal_hex": "0x00000017", + "name": "ExSemaphoreObjectType", + "type": "variable", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_module.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 24, + "ordinal_hex": "0x00000018", + "name": "ExSetXConfigSetting", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Modules", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_xconfig.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 25, + "ordinal_hex": "0x00000019", + "name": "ExTerminateThread", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 26, + "ordinal_hex": "0x0000001A", + "name": "ExTerminateTitleProcess", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 27, + "ordinal_hex": "0x0000001B", + "name": "ExThreadObjectType", + "type": "variable", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_module.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 28, + "ordinal_hex": "0x0000001C", + "name": "ExTimerObjectType", + "type": "variable", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_module.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 29, + "ordinal_hex": "0x0000001D", + "name": "MmDoubleMapMemory", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 30, + "ordinal_hex": "0x0000001E", + "name": "MmUnmapMemory", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 31, + "ordinal_hex": "0x0000001F", + "name": "XeKeysGetConsoleCertificate", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 32, + "ordinal_hex": "0x00000020", + "name": "FscGetCacheElementCount", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "FileSystem", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_io.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 33, + "ordinal_hex": "0x00000021", + "name": "FscSetCacheElementCount", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "FileSystem", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_io.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 34, + "ordinal_hex": "0x00000022", + "name": "HalGetCurrentAVPack", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_hal.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 35, + "ordinal_hex": "0x00000023", + "name": "HalGpioControl", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 36, + "ordinal_hex": "0x00000024", + "name": "HalOpenCloseODDTray", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_hal.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 37, + "ordinal_hex": "0x00000025", + "name": "HalReadWritePCISpace", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 38, + "ordinal_hex": "0x00000026", + "name": "HalRegisterPowerDownNotification", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 39, + "ordinal_hex": "0x00000027", + "name": "HalRegisterSMCNotification", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 40, + "ordinal_hex": "0x00000028", + "name": "HalReturnToFirmware", + "type": "function", + "status": "stub", + "tags": [ + "Stub", + "Important" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_hal.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 41, + "ordinal_hex": "0x00000029", + "name": "HalSendSMCMessage", + "type": "function", + "status": "stub", + "tags": [ + "Stub", + "Important", + "HighFrequency" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_hal.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 42, + "ordinal_hex": "0x0000002A", + "name": "HalSetAudioEnable", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 43, + "ordinal_hex": "0x0000002B", + "name": "InterlockedFlushSList", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 44, + "ordinal_hex": "0x0000002C", + "name": "InterlockedPopEntrySList", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "HighFrequency" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 45, + "ordinal_hex": "0x0000002D", + "name": "InterlockedPushEntrySList", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "HighFrequency" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 46, + "ordinal_hex": "0x0000002E", + "name": "IoAcquireDeviceObjectLock", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 47, + "ordinal_hex": "0x0000002F", + "name": "IoAllocateIrp", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 48, + "ordinal_hex": "0x00000030", + "name": "IoBuildAsynchronousFsdRequest", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 49, + "ordinal_hex": "0x00000031", + "name": "IoBuildDeviceIoControlRequest", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 50, + "ordinal_hex": "0x00000032", + "name": "IoBuildSynchronousFsdRequest", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 51, + "ordinal_hex": "0x00000033", + "name": "IoCallDriver", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 52, + "ordinal_hex": "0x00000034", + "name": "IoCheckShareAccess", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 53, + "ordinal_hex": "0x00000035", + "name": "IoCompleteRequest", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 54, + "ordinal_hex": "0x00000036", + "name": "IoCompletionObjectType", + "type": "variable", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_module.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 55, + "ordinal_hex": "0x00000037", + "name": "IoCreateDevice", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "FileSystem", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_io.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 56, + "ordinal_hex": "0x00000038", + "name": "IoCreateFile", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 57, + "ordinal_hex": "0x00000039", + "name": "IoDeleteDevice", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "FileSystem", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_io.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 58, + "ordinal_hex": "0x0000003A", + "name": "IoDeviceObjectType", + "type": "variable", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_module.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 59, + "ordinal_hex": "0x0000003B", + "name": "IoDismountVolume", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 60, + "ordinal_hex": "0x0000003C", + "name": "IoDismountVolumeByFileHandle", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 61, + "ordinal_hex": "0x0000003D", + "name": "IoDismountVolumeByName", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 62, + "ordinal_hex": "0x0000003E", + "name": "IoFileObjectType", + "type": "variable", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_module.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 63, + "ordinal_hex": "0x0000003F", + "name": "IoFreeIrp", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 64, + "ordinal_hex": "0x00000040", + "name": "IoInitializeIrp", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 65, + "ordinal_hex": "0x00000041", + "name": "IoInvalidDeviceRequest", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 66, + "ordinal_hex": "0x00000042", + "name": "ExSetBetaFeaturesEnabled", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 67, + "ordinal_hex": "0x00000043", + "name": "IoQueueThreadIrp", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 68, + "ordinal_hex": "0x00000044", + "name": "IoReleaseDeviceObjectLock", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 69, + "ordinal_hex": "0x00000045", + "name": "IoRemoveShareAccess", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 70, + "ordinal_hex": "0x00000046", + "name": "IoSetIoCompletion", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 71, + "ordinal_hex": "0x00000047", + "name": "IoSetShareAccess", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 72, + "ordinal_hex": "0x00000048", + "name": "IoStartNextPacket", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 73, + "ordinal_hex": "0x00000049", + "name": "IoStartNextPacketByKey", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 74, + "ordinal_hex": "0x0000004A", + "name": "IoStartPacket", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 75, + "ordinal_hex": "0x0000004B", + "name": "IoSynchronousDeviceIoControlRequest", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 76, + "ordinal_hex": "0x0000004C", + "name": "IoSynchronousFsdRequest", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 77, + "ordinal_hex": "0x0000004D", + "name": "KeAcquireSpinLockAtRaisedIrql", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "Blocking", + "HighFrequency" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 78, + "ordinal_hex": "0x0000004E", + "name": "KeAlertResumeThread", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 79, + "ordinal_hex": "0x0000004F", + "name": "KeAlertThread", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 80, + "ordinal_hex": "0x00000050", + "name": "KeBlowFuses", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 81, + "ordinal_hex": "0x00000051", + "name": "KeBoostPriorityThread", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 82, + "ordinal_hex": "0x00000052", + "name": "KeBugCheck", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "Important" + ], + "category": "Debug", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_debug.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 83, + "ordinal_hex": "0x00000053", + "name": "KeBugCheckEx", + "type": "function", + "status": "stub", + "tags": [ + "Stub", + "Important" + ], + "category": "Debug", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_debug.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 84, + "ordinal_hex": "0x00000054", + "name": "KeCancelTimer", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 85, + "ordinal_hex": "0x00000055", + "name": "KeConnectInterrupt", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 86, + "ordinal_hex": "0x00000056", + "name": "KeContextFromKframes", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 87, + "ordinal_hex": "0x00000057", + "name": "KeContextToKframes", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 88, + "ordinal_hex": "0x00000058", + "name": "KeCreateUserMode", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 89, + "ordinal_hex": "0x00000059", + "name": "KeDebugMonitorData", + "type": "variable", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_module.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 90, + "ordinal_hex": "0x0000005A", + "name": "KeDelayExecutionThread", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "Blocking", + "HighFrequency" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 91, + "ordinal_hex": "0x0000005B", + "name": "KeDeleteUserMode", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 92, + "ordinal_hex": "0x0000005C", + "name": "KeDisconnectInterrupt", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 93, + "ordinal_hex": "0x0000005D", + "name": "KeEnableFpuExceptions", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_misc.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 94, + "ordinal_hex": "0x0000005E", + "name": "KeEnablePPUPerformanceMonitor", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 95, + "ordinal_hex": "0x0000005F", + "name": "KeEnterCriticalRegion", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "HighFrequency" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 96, + "ordinal_hex": "0x00000060", + "name": "KeEnterUserMode", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 97, + "ordinal_hex": "0x00000061", + "name": "KeFlushCacheRange", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 98, + "ordinal_hex": "0x00000062", + "name": "KeFlushCurrentEntireTb", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 99, + "ordinal_hex": "0x00000063", + "name": "KeFlushEntireTb", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 100, + "ordinal_hex": "0x00000064", + "name": "KeFlushUserModeCurrentTb", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 101, + "ordinal_hex": "0x00000065", + "name": "KeFlushUserModeTb", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 102, + "ordinal_hex": "0x00000066", + "name": "KeGetCurrentProcessType", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "HighFrequency" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 103, + "ordinal_hex": "0x00000067", + "name": "KeGetPMWRegister", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 104, + "ordinal_hex": "0x00000068", + "name": "KeGetPRVRegister", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 105, + "ordinal_hex": "0x00000069", + "name": "KeGetSocRegister", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 106, + "ordinal_hex": "0x0000006A", + "name": "KeGetSpecialPurposeRegister", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 107, + "ordinal_hex": "0x0000006B", + "name": "KeLockL2", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Memory", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_memory.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 108, + "ordinal_hex": "0x0000006C", + "name": "KeUnlockL2", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Memory", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_memory.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 109, + "ordinal_hex": "0x0000006D", + "name": "KeInitializeApc", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 110, + "ordinal_hex": "0x0000006E", + "name": "KeInitializeDeviceQueue", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 111, + "ordinal_hex": "0x0000006F", + "name": "KeInitializeDpc", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "Sketchy" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 112, + "ordinal_hex": "0x00000070", + "name": "KeInitializeEvent", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 113, + "ordinal_hex": "0x00000071", + "name": "KeInitializeInterrupt", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 114, + "ordinal_hex": "0x00000072", + "name": "KeInitializeMutant", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 115, + "ordinal_hex": "0x00000073", + "name": "KeInitializeQueue", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 116, + "ordinal_hex": "0x00000074", + "name": "KeInitializeSemaphore", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 117, + "ordinal_hex": "0x00000075", + "name": "KeInitializeTimerEx", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 118, + "ordinal_hex": "0x00000076", + "name": "KeInsertByKeyDeviceQueue", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 119, + "ordinal_hex": "0x00000077", + "name": "KeInsertDeviceQueue", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 120, + "ordinal_hex": "0x00000078", + "name": "KeInsertHeadQueue", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 121, + "ordinal_hex": "0x00000079", + "name": "KeInsertQueue", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 122, + "ordinal_hex": "0x0000007A", + "name": "KeInsertQueueApc", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 123, + "ordinal_hex": "0x0000007B", + "name": "KeInsertQueueDpc", + "type": "function", + "status": "stub", + "tags": [ + "Stub", + "Sketchy" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 124, + "ordinal_hex": "0x0000007C", + "name": "KeIpiGenericCall", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 125, + "ordinal_hex": "0x0000007D", + "name": "KeLeaveCriticalRegion", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "HighFrequency" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 126, + "ordinal_hex": "0x0000007E", + "name": "KeLeaveUserMode", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 127, + "ordinal_hex": "0x0000007F", + "name": "KePulseEvent", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "HighFrequency" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 128, + "ordinal_hex": "0x00000080", + "name": "KeQueryBackgroundProcessors", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 129, + "ordinal_hex": "0x00000081", + "name": "KeQueryBasePriorityThread", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 130, + "ordinal_hex": "0x00000082", + "name": "KeQueryInterruptTime", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_misc.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 131, + "ordinal_hex": "0x00000083", + "name": "KeQueryPerformanceFrequency", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "HighFrequency" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 132, + "ordinal_hex": "0x00000084", + "name": "KeQuerySystemTime", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 133, + "ordinal_hex": "0x00000085", + "name": "KeRaiseIrqlToDpcLevel", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "HighFrequency" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 134, + "ordinal_hex": "0x00000086", + "name": "KeRegisterDriverNotification", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 135, + "ordinal_hex": "0x00000087", + "name": "KeReleaseMutant", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 136, + "ordinal_hex": "0x00000088", + "name": "KeReleaseSemaphore", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 137, + "ordinal_hex": "0x00000089", + "name": "KeReleaseSpinLockFromRaisedIrql", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "HighFrequency" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 138, + "ordinal_hex": "0x0000008A", + "name": "KeRemoveByKeyDeviceQueue", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 139, + "ordinal_hex": "0x0000008B", + "name": "KeRemoveDeviceQueue", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 140, + "ordinal_hex": "0x0000008C", + "name": "KeRemoveEntryDeviceQueue", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 141, + "ordinal_hex": "0x0000008D", + "name": "KeRemoveQueue", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 142, + "ordinal_hex": "0x0000008E", + "name": "KeRemoveQueueDpc", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 143, + "ordinal_hex": "0x0000008F", + "name": "KeResetEvent", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 144, + "ordinal_hex": "0x00000090", + "name": "KeRestoreFloatingPointState", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 145, + "ordinal_hex": "0x00000091", + "name": "KeRestoreVectorUnitState", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 146, + "ordinal_hex": "0x00000092", + "name": "KeResumeThread", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 147, + "ordinal_hex": "0x00000093", + "name": "KeRetireDpcList", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 148, + "ordinal_hex": "0x00000094", + "name": "KeRundownQueue", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 149, + "ordinal_hex": "0x00000095", + "name": "KeSaveFloatingPointState", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_misc.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 150, + "ordinal_hex": "0x00000096", + "name": "KeSaveVectorUnitState", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 151, + "ordinal_hex": "0x00000097", + "name": "KeSetAffinityThread", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 152, + "ordinal_hex": "0x00000098", + "name": "KeSetBackgroundProcessors", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 153, + "ordinal_hex": "0x00000099", + "name": "KeSetBasePriorityThread", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 154, + "ordinal_hex": "0x0000009A", + "name": "KeSetCurrentProcessType", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 155, + "ordinal_hex": "0x0000009B", + "name": "KeSetCurrentStackPointers", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "HighFrequency" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 156, + "ordinal_hex": "0x0000009C", + "name": "KeSetDisableBoostThread", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 157, + "ordinal_hex": "0x0000009D", + "name": "KeSetEvent", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "HighFrequency" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 158, + "ordinal_hex": "0x0000009E", + "name": "KeSetEventBoostPriority", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 159, + "ordinal_hex": "0x0000009F", + "name": "KeSetPMWRegister", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 160, + "ordinal_hex": "0x000000A0", + "name": "KeSetPowerMode", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 161, + "ordinal_hex": "0x000000A1", + "name": "KeSetPRVRegister", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 162, + "ordinal_hex": "0x000000A2", + "name": "KeSetPriorityClassThread", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 163, + "ordinal_hex": "0x000000A3", + "name": "KeSetPriorityThread", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 164, + "ordinal_hex": "0x000000A4", + "name": "KeSetSocRegister", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 165, + "ordinal_hex": "0x000000A5", + "name": "KeSetSpecialPurposeRegister", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 166, + "ordinal_hex": "0x000000A6", + "name": "KeSetTimer", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 167, + "ordinal_hex": "0x000000A7", + "name": "KeSetTimerEx", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 168, + "ordinal_hex": "0x000000A8", + "name": "KeStallExecutionProcessor", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 169, + "ordinal_hex": "0x000000A9", + "name": "KeSuspendThread", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 170, + "ordinal_hex": "0x000000AA", + "name": "KeSweepDcacheRange", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 171, + "ordinal_hex": "0x000000AB", + "name": "KeSweepIcacheRange", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 172, + "ordinal_hex": "0x000000AC", + "name": "KeTestAlertThread", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 173, + "ordinal_hex": "0x000000AD", + "name": "KeTimeStampBundle", + "type": "variable", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_module.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 174, + "ordinal_hex": "0x000000AE", + "name": "KeTryToAcquireSpinLockAtRaisedIrql", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "Blocking", + "HighFrequency", + "Sketchy" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 175, + "ordinal_hex": "0x000000AF", + "name": "KeWaitForMultipleObjects", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "Blocking", + "HighFrequency" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 176, + "ordinal_hex": "0x000000B0", + "name": "KeWaitForSingleObject", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "Blocking", + "HighFrequency" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 177, + "ordinal_hex": "0x000000B1", + "name": "KfAcquireSpinLock", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "Blocking", + "HighFrequency" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 178, + "ordinal_hex": "0x000000B2", + "name": "KfRaiseIrql", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "HighFrequency" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 179, + "ordinal_hex": "0x000000B3", + "name": "KfLowerIrql", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "HighFrequency" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 180, + "ordinal_hex": "0x000000B4", + "name": "KfReleaseSpinLock", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "HighFrequency" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 181, + "ordinal_hex": "0x000000B5", + "name": "KiBugCheckData", + "type": "variable", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 182, + "ordinal_hex": "0x000000B6", + "name": "LDICreateDecompression", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 183, + "ordinal_hex": "0x000000B7", + "name": "LDIDecompress", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 184, + "ordinal_hex": "0x000000B8", + "name": "LDIDestroyDecompression", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 185, + "ordinal_hex": "0x000000B9", + "name": "MmAllocatePhysicalMemory", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Memory", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_memory.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 186, + "ordinal_hex": "0x000000BA", + "name": "MmAllocatePhysicalMemoryEx", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Memory", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_memory.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 187, + "ordinal_hex": "0x000000BB", + "name": "MmCreateKernelStack", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Memory", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_memory.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 188, + "ordinal_hex": "0x000000BC", + "name": "MmDeleteKernelStack", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Memory", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_memory.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 189, + "ordinal_hex": "0x000000BD", + "name": "MmFreePhysicalMemory", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Memory", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_memory.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 190, + "ordinal_hex": "0x000000BE", + "name": "MmGetPhysicalAddress", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Memory", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_memory.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 191, + "ordinal_hex": "0x000000BF", + "name": "MmIsAddressValid", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Memory", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_memory.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 192, + "ordinal_hex": "0x000000C0", + "name": "MmLockAndMapSegmentArray", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 193, + "ordinal_hex": "0x000000C1", + "name": "MmLockUnlockBufferPages", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 194, + "ordinal_hex": "0x000000C2", + "name": "MmMapIoSpace", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Memory", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_memory.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 195, + "ordinal_hex": "0x000000C3", + "name": "MmPersistPhysicalMemoryAllocation", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 196, + "ordinal_hex": "0x000000C4", + "name": "MmQueryAddressProtect", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "HighFrequency" + ], + "category": "Memory", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_memory.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 197, + "ordinal_hex": "0x000000C5", + "name": "MmQueryAllocationSize", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Memory", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_memory.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 198, + "ordinal_hex": "0x000000C6", + "name": "MmQueryStatistics", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "HighFrequency" + ], + "category": "Memory", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_memory.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 199, + "ordinal_hex": "0x000000C7", + "name": "MmSetAddressProtect", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Memory", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_memory.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 200, + "ordinal_hex": "0x000000C8", + "name": "MmSplitPhysicalMemoryAllocation", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 201, + "ordinal_hex": "0x000000C9", + "name": "MmUnlockAndUnmapSegmentArray", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 202, + "ordinal_hex": "0x000000CA", + "name": "MmUnmapIoSpace", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 203, + "ordinal_hex": "0x000000CB", + "name": "Nls844UnicodeCaseTable", + "type": "variable", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 204, + "ordinal_hex": "0x000000CC", + "name": "NtAllocateVirtualMemory", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Memory", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_memory.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 205, + "ordinal_hex": "0x000000CD", + "name": "NtCancelTimer", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 206, + "ordinal_hex": "0x000000CE", + "name": "NtClearEvent", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "HighFrequency" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 207, + "ordinal_hex": "0x000000CF", + "name": "NtClose", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_ob.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 208, + "ordinal_hex": "0x000000D0", + "name": "NtCreateDirectoryObject", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 209, + "ordinal_hex": "0x000000D1", + "name": "NtCreateEvent", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 210, + "ordinal_hex": "0x000000D2", + "name": "NtCreateFile", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "FileSystem", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_io.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 211, + "ordinal_hex": "0x000000D3", + "name": "NtCreateIoCompletion", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "FileSystem", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_io.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 212, + "ordinal_hex": "0x000000D4", + "name": "NtCreateMutant", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 213, + "ordinal_hex": "0x000000D5", + "name": "NtCreateSemaphore", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 214, + "ordinal_hex": "0x000000D6", + "name": "NtCreateSymbolicLinkObject", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 215, + "ordinal_hex": "0x000000D7", + "name": "NtCreateTimer", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 216, + "ordinal_hex": "0x000000D8", + "name": "NtDeleteFile", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 217, + "ordinal_hex": "0x000000D9", + "name": "NtDeviceIoControlFile", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "FileSystem", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_io.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 218, + "ordinal_hex": "0x000000DA", + "name": "NtDuplicateObject", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_ob.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 219, + "ordinal_hex": "0x000000DB", + "name": "NtFlushBuffersFile", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "FileSystem", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_io.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 220, + "ordinal_hex": "0x000000DC", + "name": "NtFreeVirtualMemory", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Memory", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_memory.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 221, + "ordinal_hex": "0x000000DD", + "name": "NtMakeTemporaryObject", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 222, + "ordinal_hex": "0x000000DE", + "name": "NtOpenDirectoryObject", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 223, + "ordinal_hex": "0x000000DF", + "name": "NtOpenFile", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "FileSystem", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_io.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 224, + "ordinal_hex": "0x000000E0", + "name": "NtOpenSymbolicLinkObject", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "FileSystem", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_io.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 225, + "ordinal_hex": "0x000000E1", + "name": "NtProtectVirtualMemory", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Memory", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_memory.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 226, + "ordinal_hex": "0x000000E2", + "name": "NtPulseEvent", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "HighFrequency" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 227, + "ordinal_hex": "0x000000E3", + "name": "NtQueueApcThread", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 228, + "ordinal_hex": "0x000000E4", + "name": "NtQueryDirectoryFile", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "FileSystem", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_io.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 229, + "ordinal_hex": "0x000000E5", + "name": "NtQueryDirectoryObject", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 230, + "ordinal_hex": "0x000000E6", + "name": "NtQueryEvent", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "HighFrequency" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 231, + "ordinal_hex": "0x000000E7", + "name": "NtQueryFullAttributesFile", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "FileSystem", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_io.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 232, + "ordinal_hex": "0x000000E8", + "name": "NtQueryInformationFile", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "FileSystem", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_io_info.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 233, + "ordinal_hex": "0x000000E9", + "name": "NtQueryIoCompletion", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 234, + "ordinal_hex": "0x000000EA", + "name": "NtQueryMutant", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 235, + "ordinal_hex": "0x000000EB", + "name": "NtQuerySemaphore", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 236, + "ordinal_hex": "0x000000EC", + "name": "NtQuerySymbolicLinkObject", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "FileSystem", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_io.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 237, + "ordinal_hex": "0x000000ED", + "name": "NtQueryTimer", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 238, + "ordinal_hex": "0x000000EE", + "name": "NtQueryVirtualMemory", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Memory", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_memory.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 239, + "ordinal_hex": "0x000000EF", + "name": "NtQueryVolumeInformationFile", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "FileSystem", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_io_info.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 240, + "ordinal_hex": "0x000000F0", + "name": "NtReadFile", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "HighFrequency" + ], + "category": "FileSystem", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_io.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 241, + "ordinal_hex": "0x000000F1", + "name": "NtReadFileScatter", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "FileSystem", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_io.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 242, + "ordinal_hex": "0x000000F2", + "name": "NtReleaseMutant", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 243, + "ordinal_hex": "0x000000F3", + "name": "NtReleaseSemaphore", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "HighFrequency" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 244, + "ordinal_hex": "0x000000F4", + "name": "NtRemoveIoCompletion", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "HighFrequency" + ], + "category": "FileSystem", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_io.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 245, + "ordinal_hex": "0x000000F5", + "name": "NtResumeThread", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 246, + "ordinal_hex": "0x000000F6", + "name": "NtSetEvent", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "HighFrequency" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 247, + "ordinal_hex": "0x000000F7", + "name": "NtSetInformationFile", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "HighFrequency" + ], + "category": "FileSystem", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_io_info.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 248, + "ordinal_hex": "0x000000F8", + "name": "NtSetIoCompletion", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "HighFrequency" + ], + "category": "FileSystem", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_io.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 249, + "ordinal_hex": "0x000000F9", + "name": "NtSetSystemTime", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 250, + "ordinal_hex": "0x000000FA", + "name": "NtSetTimerEx", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 251, + "ordinal_hex": "0x000000FB", + "name": "NtSignalAndWaitForSingleObjectEx", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "Blocking", + "HighFrequency" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 252, + "ordinal_hex": "0x000000FC", + "name": "NtSuspendThread", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 253, + "ordinal_hex": "0x000000FD", + "name": "NtWaitForSingleObjectEx", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "Blocking", + "HighFrequency" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 254, + "ordinal_hex": "0x000000FE", + "name": "NtWaitForMultipleObjectsEx", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "Blocking", + "HighFrequency" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 255, + "ordinal_hex": "0x000000FF", + "name": "NtWriteFile", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "FileSystem", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_io.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 256, + "ordinal_hex": "0x00000100", + "name": "NtWriteFileGather", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 257, + "ordinal_hex": "0x00000101", + "name": "NtYieldExecution", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "HighFrequency" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 258, + "ordinal_hex": "0x00000102", + "name": "ObCreateObject", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_ob.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 259, + "ordinal_hex": "0x00000103", + "name": "ObCreateSymbolicLink", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_ob.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 260, + "ordinal_hex": "0x00000104", + "name": "ObDeleteSymbolicLink", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_ob.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 261, + "ordinal_hex": "0x00000105", + "name": "ObDereferenceObject", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_ob.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 262, + "ordinal_hex": "0x00000106", + "name": "ObDirectoryObjectType", + "type": "variable", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_module.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 263, + "ordinal_hex": "0x00000107", + "name": "ObGetWaitableObject", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 264, + "ordinal_hex": "0x00000108", + "name": "ObInsertObject", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 265, + "ordinal_hex": "0x00000109", + "name": "ObIsTitleObject", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 266, + "ordinal_hex": "0x0000010A", + "name": "ObLookupAnyThreadByThreadId", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_ob.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 267, + "ordinal_hex": "0x0000010B", + "name": "ObLookupThreadByThreadId", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_ob.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 268, + "ordinal_hex": "0x0000010C", + "name": "ObMakeTemporaryObject", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 269, + "ordinal_hex": "0x0000010D", + "name": "ObOpenObjectByName", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_ob.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 270, + "ordinal_hex": "0x0000010E", + "name": "ObOpenObjectByPointer", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_ob.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 271, + "ordinal_hex": "0x0000010F", + "name": "ObReferenceObject", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_ob.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 272, + "ordinal_hex": "0x00000110", + "name": "ObReferenceObjectByHandle", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_ob.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 273, + "ordinal_hex": "0x00000111", + "name": "ObReferenceObjectByName", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_ob.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 274, + "ordinal_hex": "0x00000112", + "name": "ObSymbolicLinkObjectType", + "type": "variable", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_module.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 275, + "ordinal_hex": "0x00000113", + "name": "ObTranslateSymbolicLink", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 276, + "ordinal_hex": "0x00000114", + "name": "RtlAnsiStringToUnicodeString", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 277, + "ordinal_hex": "0x00000115", + "name": "RtlAppendStringToString", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 278, + "ordinal_hex": "0x00000116", + "name": "RtlAppendUnicodeStringToString", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 279, + "ordinal_hex": "0x00000117", + "name": "RtlAppendUnicodeToString", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 280, + "ordinal_hex": "0x00000118", + "name": "RtlAssert", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 281, + "ordinal_hex": "0x00000119", + "name": "RtlCaptureContext", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 282, + "ordinal_hex": "0x0000011A", + "name": "RtlCompareMemory", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Memory", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_rtl.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 283, + "ordinal_hex": "0x0000011B", + "name": "RtlCompareMemoryUlong", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Memory", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_rtl.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 284, + "ordinal_hex": "0x0000011C", + "name": "RtlCompareString", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_rtl.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 285, + "ordinal_hex": "0x0000011D", + "name": "RtlCompareStringN", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_rtl.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 286, + "ordinal_hex": "0x0000011E", + "name": "RtlCompareUnicodeString", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 287, + "ordinal_hex": "0x0000011F", + "name": "RtlCompareUnicodeStringN", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 288, + "ordinal_hex": "0x00000120", + "name": "RtlCompareUtf8ToUnicode", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 289, + "ordinal_hex": "0x00000121", + "name": "RtlCopyString", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_rtl.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 290, + "ordinal_hex": "0x00000122", + "name": "RtlCopyUnicodeString", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_rtl.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 291, + "ordinal_hex": "0x00000123", + "name": "RtlCreateUnicodeString", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 292, + "ordinal_hex": "0x00000124", + "name": "RtlDowncaseUnicodeChar", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_rtl.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 293, + "ordinal_hex": "0x00000125", + "name": "RtlEnterCriticalSection", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "HighFrequency" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_rtl.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 294, + "ordinal_hex": "0x00000126", + "name": "RtlFillMemoryUlong", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Memory", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_rtl.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 295, + "ordinal_hex": "0x00000127", + "name": "RtlFreeAnsiString", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_rtl.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 296, + "ordinal_hex": "0x00000128", + "name": "RtlFreeUnicodeString", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_rtl.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 297, + "ordinal_hex": "0x00000129", + "name": "RtlGetCallersAddress", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 298, + "ordinal_hex": "0x0000012A", + "name": "RtlGetStackLimits", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_rtl.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 299, + "ordinal_hex": "0x0000012B", + "name": "RtlImageXexHeaderField", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_rtl.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 300, + "ordinal_hex": "0x0000012C", + "name": "RtlInitAnsiString", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_rtl.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 301, + "ordinal_hex": "0x0000012D", + "name": "RtlInitUnicodeString", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_rtl.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 302, + "ordinal_hex": "0x0000012E", + "name": "RtlInitializeCriticalSection", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_rtl.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 303, + "ordinal_hex": "0x0000012F", + "name": "RtlInitializeCriticalSectionAndSpinCount", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "HighFrequency" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_rtl.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 304, + "ordinal_hex": "0x00000130", + "name": "RtlLeaveCriticalSection", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "HighFrequency" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_rtl.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 305, + "ordinal_hex": "0x00000131", + "name": "RtlLookupFunctionEntry", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 306, + "ordinal_hex": "0x00000132", + "name": "RtlLowerChar", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_rtl.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 307, + "ordinal_hex": "0x00000133", + "name": "RtlMultiByteToUnicodeN", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "HighFrequency", + "Sketchy" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_rtl.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 308, + "ordinal_hex": "0x00000134", + "name": "RtlMultiByteToUnicodeSize", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 309, + "ordinal_hex": "0x00000135", + "name": "RtlNtStatusToDosError", + "type": "function", + "status": "stub", + "tags": [ + "Important", + "HighFrequency", + "LogResult" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_error.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 310, + "ordinal_hex": "0x00000136", + "name": "RtlRaiseException", + "type": "function", + "status": "stub", + "tags": [ + "Stub", + "Important" + ], + "category": "Debug", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_debug.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 311, + "ordinal_hex": "0x00000137", + "name": "RtlRaiseStatus", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 312, + "ordinal_hex": "0x00000138", + "name": "RtlRip", + "type": "function", + "status": "stub", + "tags": [ + "Important" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_rtl.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 313, + "ordinal_hex": "0x00000139", + "name": "_scprintf", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 314, + "ordinal_hex": "0x0000013A", + "name": "_snprintf", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_strings.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 315, + "ordinal_hex": "0x0000013B", + "name": "sprintf", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_strings.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 316, + "ordinal_hex": "0x0000013C", + "name": "_scwprintf", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 317, + "ordinal_hex": "0x0000013D", + "name": "_snwprintf", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_strings.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 318, + "ordinal_hex": "0x0000013E", + "name": "swprintf", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_strings.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 319, + "ordinal_hex": "0x0000013F", + "name": "RtlTimeFieldsToTime", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_rtl.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 320, + "ordinal_hex": "0x00000140", + "name": "RtlTimeToTimeFields", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_rtl.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 321, + "ordinal_hex": "0x00000141", + "name": "RtlTryEnterCriticalSection", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "HighFrequency" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_rtl.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 322, + "ordinal_hex": "0x00000142", + "name": "RtlUnicodeStringToAnsiString", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_rtl.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 323, + "ordinal_hex": "0x00000143", + "name": "RtlUnicodeToMultiByteN", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "HighFrequency", + "Sketchy" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_rtl.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 324, + "ordinal_hex": "0x00000144", + "name": "RtlUnicodeToMultiByteSize", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 325, + "ordinal_hex": "0x00000145", + "name": "RtlUnicodeToUtf8", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 326, + "ordinal_hex": "0x00000146", + "name": "RtlUnicodeToUtf8Size", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 327, + "ordinal_hex": "0x00000147", + "name": "RtlUnwind", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 328, + "ordinal_hex": "0x00000148", + "name": "RtlUnwind2", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 329, + "ordinal_hex": "0x00000149", + "name": "RtlUpcaseUnicodeChar", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_rtl.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 330, + "ordinal_hex": "0x0000014A", + "name": "RtlUpperChar", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_rtl.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 331, + "ordinal_hex": "0x0000014B", + "name": "RtlVirtualUnwind", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 332, + "ordinal_hex": "0x0000014C", + "name": "_vscprintf", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 333, + "ordinal_hex": "0x0000014D", + "name": "_vsnprintf", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_strings.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 334, + "ordinal_hex": "0x0000014E", + "name": "vsprintf", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_strings.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 335, + "ordinal_hex": "0x0000014F", + "name": "_vscwprintf", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_strings.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 336, + "ordinal_hex": "0x00000150", + "name": "_vsnwprintf", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_strings.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 337, + "ordinal_hex": "0x00000151", + "name": "vswprintf", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_strings.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 338, + "ordinal_hex": "0x00000152", + "name": "KeTlsAlloc", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 339, + "ordinal_hex": "0x00000153", + "name": "KeTlsFree", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 340, + "ordinal_hex": "0x00000154", + "name": "KeTlsGetValue", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "HighFrequency" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 341, + "ordinal_hex": "0x00000155", + "name": "KeTlsSetValue", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 342, + "ordinal_hex": "0x00000156", + "name": "XboxHardwareInfo", + "type": "variable", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_module.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 343, + "ordinal_hex": "0x00000157", + "name": "XboxKrnlBaseVersion", + "type": "variable", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 344, + "ordinal_hex": "0x00000158", + "name": "XboxKrnlVersion", + "type": "variable", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_module.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 345, + "ordinal_hex": "0x00000159", + "name": "XeCryptAesKey", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_crypt.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 346, + "ordinal_hex": "0x0000015A", + "name": "XeCryptAesEcb", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_crypt.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 347, + "ordinal_hex": "0x0000015B", + "name": "XeCryptAesCbc", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_crypt.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 348, + "ordinal_hex": "0x0000015C", + "name": "XeCryptBnDwLeDhEqualBase", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 349, + "ordinal_hex": "0x0000015D", + "name": "XeCryptBnDwLeDhInvalBase", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 350, + "ordinal_hex": "0x0000015E", + "name": "XeCryptBnDwLeDhModExp", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 351, + "ordinal_hex": "0x0000015F", + "name": "XeCryptBnDw_Copy", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 352, + "ordinal_hex": "0x00000160", + "name": "XeCryptBnDw_SwapLeBe", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 353, + "ordinal_hex": "0x00000161", + "name": "XeCryptBnDw_Zero", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 354, + "ordinal_hex": "0x00000162", + "name": "XeCryptBnDwLePkcs1Format", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 355, + "ordinal_hex": "0x00000163", + "name": "XeCryptBnDwLePkcs1Verify", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_crypt.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 356, + "ordinal_hex": "0x00000164", + "name": "XeCryptBnQwBeSigCreate", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 357, + "ordinal_hex": "0x00000165", + "name": "XeCryptBnQwBeSigFormat", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 358, + "ordinal_hex": "0x00000166", + "name": "XeCryptBnQwBeSigVerify", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_crypt.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 359, + "ordinal_hex": "0x00000167", + "name": "XeCryptBnQwNeModExp", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 360, + "ordinal_hex": "0x00000168", + "name": "XeCryptBnQwNeModExpRoot", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 361, + "ordinal_hex": "0x00000169", + "name": "XeCryptBnQwNeModInv", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 362, + "ordinal_hex": "0x0000016A", + "name": "XeCryptBnQwNeModMul", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 363, + "ordinal_hex": "0x0000016B", + "name": "XeCryptBnQwNeRsaKeyGen", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 364, + "ordinal_hex": "0x0000016C", + "name": "XeCryptBnQwNeRsaPrvCrypt", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 365, + "ordinal_hex": "0x0000016D", + "name": "XeCryptBnQwNeRsaPubCrypt", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_crypt.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 366, + "ordinal_hex": "0x0000016E", + "name": "XeCryptBnQw_Copy", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 367, + "ordinal_hex": "0x0000016F", + "name": "XeCryptBnQw_SwapDwQw", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 368, + "ordinal_hex": "0x00000170", + "name": "XeCryptBnQw_SwapDwQwLeBe", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_crypt.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 369, + "ordinal_hex": "0x00000171", + "name": "XeCryptBnQw_SwapLeBe", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 370, + "ordinal_hex": "0x00000172", + "name": "XeCryptBnQw_Zero", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 371, + "ordinal_hex": "0x00000173", + "name": "XeCryptChainAndSumMac", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 372, + "ordinal_hex": "0x00000174", + "name": "XeCryptDesParity", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_crypt.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 373, + "ordinal_hex": "0x00000175", + "name": "XeCryptDesKey", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_crypt.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 374, + "ordinal_hex": "0x00000176", + "name": "XeCryptDesEcb", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_crypt.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 375, + "ordinal_hex": "0x00000177", + "name": "XeCryptDesCbc", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 376, + "ordinal_hex": "0x00000178", + "name": "XeCryptDes3Key", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_crypt.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 377, + "ordinal_hex": "0x00000179", + "name": "XeCryptDes3Ecb", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_crypt.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 378, + "ordinal_hex": "0x0000017A", + "name": "XeCryptDes3Cbc", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_crypt.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 379, + "ordinal_hex": "0x0000017B", + "name": "XeCryptHmacMd5Init", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 380, + "ordinal_hex": "0x0000017C", + "name": "XeCryptHmacMd5Update", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 381, + "ordinal_hex": "0x0000017D", + "name": "XeCryptHmacMd5Final", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 382, + "ordinal_hex": "0x0000017E", + "name": "XeCryptHmacMd5", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 383, + "ordinal_hex": "0x0000017F", + "name": "XeCryptHmacShaInit", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 384, + "ordinal_hex": "0x00000180", + "name": "XeCryptHmacShaUpdate", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 385, + "ordinal_hex": "0x00000181", + "name": "XeCryptHmacShaFinal", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 386, + "ordinal_hex": "0x00000182", + "name": "XeCryptHmacSha", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_crypt.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 387, + "ordinal_hex": "0x00000183", + "name": "XeCryptHmacShaVerify", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 388, + "ordinal_hex": "0x00000184", + "name": "XeCryptMd5Init", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_crypt.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 389, + "ordinal_hex": "0x00000185", + "name": "XeCryptMd5Update", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_crypt.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 390, + "ordinal_hex": "0x00000186", + "name": "XeCryptMd5Final", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_crypt.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 391, + "ordinal_hex": "0x00000187", + "name": "XeCryptMd5", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_crypt.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 392, + "ordinal_hex": "0x00000188", + "name": "XeCryptParveEcb", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 393, + "ordinal_hex": "0x00000189", + "name": "XeCryptParveCbcMac", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 394, + "ordinal_hex": "0x0000018A", + "name": "XeCryptRandom", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_crypt.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 395, + "ordinal_hex": "0x0000018B", + "name": "XeCryptRc4Key", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_crypt.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 396, + "ordinal_hex": "0x0000018C", + "name": "XeCryptRc4Ecb", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_crypt.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 397, + "ordinal_hex": "0x0000018D", + "name": "XeCryptRc4", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_crypt.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 398, + "ordinal_hex": "0x0000018E", + "name": "XeCryptRotSumSha", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_crypt.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 399, + "ordinal_hex": "0x0000018F", + "name": "XeCryptShaInit", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_crypt.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 400, + "ordinal_hex": "0x00000190", + "name": "XeCryptShaUpdate", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_crypt.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 401, + "ordinal_hex": "0x00000191", + "name": "XeCryptShaFinal", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_crypt.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 402, + "ordinal_hex": "0x00000192", + "name": "XeCryptSha", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_crypt.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 403, + "ordinal_hex": "0x00000193", + "name": "XexExecutableModuleHandle", + "type": "variable", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_module.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 404, + "ordinal_hex": "0x00000194", + "name": "XexCheckExecutablePrivilege", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Modules", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_modules.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 405, + "ordinal_hex": "0x00000195", + "name": "XexGetModuleHandle", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Modules", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_modules.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 406, + "ordinal_hex": "0x00000196", + "name": "XexGetModuleSection", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Modules", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_modules.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 407, + "ordinal_hex": "0x00000197", + "name": "XexGetProcedureAddress", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Modules", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_modules.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 408, + "ordinal_hex": "0x00000198", + "name": "XexLoadExecutable", + "type": "function", + "status": "sketchy", + "tags": [ + "Sketchy" + ], + "category": "Modules", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_modules.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 409, + "ordinal_hex": "0x00000199", + "name": "XexLoadImage", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Modules", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_modules.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 410, + "ordinal_hex": "0x0000019A", + "name": "XexLoadImageFromMemory", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Modules", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_modules.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 411, + "ordinal_hex": "0x0000019B", + "name": "XexLoadImageHeaders", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Modules", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_modules.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 412, + "ordinal_hex": "0x0000019C", + "name": "XexPcToFileHeader", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 413, + "ordinal_hex": "0x0000019D", + "name": "KiApcNormalRoutineNop_", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 414, + "ordinal_hex": "0x0000019E", + "name": "XexRegisterPatchDescriptor", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 415, + "ordinal_hex": "0x0000019F", + "name": "XexSendDeferredNotifications", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 416, + "ordinal_hex": "0x000001A0", + "name": "XexStartExecutable", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 417, + "ordinal_hex": "0x000001A1", + "name": "XexUnloadImage", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Modules", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_modules.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 418, + "ordinal_hex": "0x000001A2", + "name": "XexUnloadImageAndExitThread", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 419, + "ordinal_hex": "0x000001A3", + "name": "XexUnloadTitleModules", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 420, + "ordinal_hex": "0x000001A4", + "name": "XexVerifyImageHeaders", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 421, + "ordinal_hex": "0x000001A5", + "name": "__C_specific_handler", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 422, + "ordinal_hex": "0x000001A6", + "name": "DbgLoadImageSymbols", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 423, + "ordinal_hex": "0x000001A7", + "name": "DbgUnLoadImageSymbols", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 424, + "ordinal_hex": "0x000001A8", + "name": "RtlImageDirectoryEntryToData", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_rtl.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 425, + "ordinal_hex": "0x000001A9", + "name": "RtlImageNtHeader", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_rtl.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 426, + "ordinal_hex": "0x000001AA", + "name": "ExDebugMonitorService", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 427, + "ordinal_hex": "0x000001AB", + "name": "MmDbgReadCheck", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 428, + "ordinal_hex": "0x000001AC", + "name": "MmDbgReleaseAddress", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 429, + "ordinal_hex": "0x000001AD", + "name": "MmDbgWriteCheck", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 430, + "ordinal_hex": "0x000001AE", + "name": "ExLoadedCommandLine", + "type": "variable", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_module.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 431, + "ordinal_hex": "0x000001AF", + "name": "ExLoadedImageName", + "type": "variable", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_module.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 432, + "ordinal_hex": "0x000001B0", + "name": "VdBlockUntilGUIIdle", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 433, + "ordinal_hex": "0x000001B1", + "name": "VdCallGraphicsNotificationRoutines", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "Sketchy" + ], + "category": "Video", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_video.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 434, + "ordinal_hex": "0x000001B2", + "name": "VdDisplayFatalError", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 435, + "ordinal_hex": "0x000001B3", + "name": "VdEnableClosedCaption", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 436, + "ordinal_hex": "0x000001B4", + "name": "VdEnableDisableClockGating", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Video", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_video.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 437, + "ordinal_hex": "0x000001B5", + "name": "VdEnableDisablePowerSavingMode", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 438, + "ordinal_hex": "0x000001B6", + "name": "VdEnableRingBufferRPtrWriteBack", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Video", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_video.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 439, + "ordinal_hex": "0x000001B7", + "name": "VdGenerateGPUCSCCoefficients", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 440, + "ordinal_hex": "0x000001B8", + "name": "VdGetClosedCaptionReadyStatus", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 441, + "ordinal_hex": "0x000001B9", + "name": "VdGetCurrentDisplayGamma", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Video", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_video.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 442, + "ordinal_hex": "0x000001BA", + "name": "VdGetCurrentDisplayInformation", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Video", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_video.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 443, + "ordinal_hex": "0x000001BB", + "name": "VdGetDisplayModeOverride", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 444, + "ordinal_hex": "0x000001BC", + "name": "VdGetGraphicsAsicID", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Video", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_video.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 445, + "ordinal_hex": "0x000001BD", + "name": "VdGetSystemCommandBuffer", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Video", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_video.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 446, + "ordinal_hex": "0x000001BE", + "name": "VdGlobalDevice", + "type": "variable", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 447, + "ordinal_hex": "0x000001BF", + "name": "VdGlobalXamDevice", + "type": "variable", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 448, + "ordinal_hex": "0x000001C0", + "name": "VdGpuClockInMHz", + "type": "variable", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 449, + "ordinal_hex": "0x000001C1", + "name": "VdHSIOCalibrationLock", + "type": "variable", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 450, + "ordinal_hex": "0x000001C2", + "name": "VdInitializeEngines", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Video", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_video.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 451, + "ordinal_hex": "0x000001C3", + "name": "VdInitializeRingBuffer", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Video", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_video.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 452, + "ordinal_hex": "0x000001C4", + "name": "VdInitializeScaler", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 453, + "ordinal_hex": "0x000001C5", + "name": "VdInitializeScalerCommandBuffer", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "Sketchy" + ], + "category": "Video", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_video.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 454, + "ordinal_hex": "0x000001C6", + "name": "VdIsHSIOTrainingSucceeded", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Video", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_video.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 455, + "ordinal_hex": "0x000001C7", + "name": "VdPersistDisplay", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "Sketchy" + ], + "category": "Video", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_video.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 456, + "ordinal_hex": "0x000001C8", + "name": "VdQuerySystemCommandBuffer", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 457, + "ordinal_hex": "0x000001C9", + "name": "VdQueryVideoFlags", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Video", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_video.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 458, + "ordinal_hex": "0x000001CA", + "name": "VdQueryVideoMode", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Video", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_video.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 459, + "ordinal_hex": "0x000001CB", + "name": "VdReadDVERegisterUlong", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 460, + "ordinal_hex": "0x000001CC", + "name": "VdReadWriteHSIOCalibrationFlag", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 461, + "ordinal_hex": "0x000001CD", + "name": "VdRegisterGraphicsNotification", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 462, + "ordinal_hex": "0x000001CE", + "name": "VdRegisterXamGraphicsNotification", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 463, + "ordinal_hex": "0x000001CF", + "name": "VdSendClosedCaptionData", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 464, + "ordinal_hex": "0x000001D0", + "name": "VdSetCGMSOption", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 465, + "ordinal_hex": "0x000001D1", + "name": "VdSetColorProfileAdjustment", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 466, + "ordinal_hex": "0x000001D2", + "name": "VdSetCscMatricesOverride", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 467, + "ordinal_hex": "0x000001D3", + "name": "VdSetDisplayMode", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Video", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_video.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 468, + "ordinal_hex": "0x000001D4", + "name": "VdSetDisplayModeOverride", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Video", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_video.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 469, + "ordinal_hex": "0x000001D5", + "name": "VdSetGraphicsInterruptCallback", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Video", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_video.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 470, + "ordinal_hex": "0x000001D6", + "name": "VdSetHDCPOption", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 471, + "ordinal_hex": "0x000001D7", + "name": "VdSetMacrovisionOption", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 472, + "ordinal_hex": "0x000001D8", + "name": "VdSetSystemCommandBuffer", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 473, + "ordinal_hex": "0x000001D9", + "name": "VdSetSystemCommandBufferGpuIdentifierAddress", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Video", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_video.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 474, + "ordinal_hex": "0x000001DA", + "name": "VdSetWSSData", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 475, + "ordinal_hex": "0x000001DB", + "name": "VdSetWSSOption", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 476, + "ordinal_hex": "0x000001DC", + "name": "VdShutdownEngines", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Video", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_video.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 477, + "ordinal_hex": "0x000001DD", + "name": "VdTurnDisplayOff", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 478, + "ordinal_hex": "0x000001DE", + "name": "VdTurnDisplayOn", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 479, + "ordinal_hex": "0x000001DF", + "name": "KiApcNormalRoutineNop", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 480, + "ordinal_hex": "0x000001E0", + "name": "VdWriteDVERegisterUlong", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 481, + "ordinal_hex": "0x000001E1", + "name": "XVoicedHeadsetPresent", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 482, + "ordinal_hex": "0x000001E2", + "name": "XVoicedSubmitPacket", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 483, + "ordinal_hex": "0x000001E3", + "name": "XVoicedClose", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 484, + "ordinal_hex": "0x000001E4", + "name": "XVoicedActivate", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 485, + "ordinal_hex": "0x000001E5", + "name": "XInputdGetCapabilities", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 486, + "ordinal_hex": "0x000001E6", + "name": "XInputdReadState", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 487, + "ordinal_hex": "0x000001E7", + "name": "XInputdWriteState", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 488, + "ordinal_hex": "0x000001E8", + "name": "XInputdNotify", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 489, + "ordinal_hex": "0x000001E9", + "name": "XInputdRawState", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 490, + "ordinal_hex": "0x000001EA", + "name": "HidGetCapabilities", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 491, + "ordinal_hex": "0x000001EB", + "name": "HidReadKeys", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Input", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_hid.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 492, + "ordinal_hex": "0x000001EC", + "name": "XInputdGetDeviceStats", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 493, + "ordinal_hex": "0x000001ED", + "name": "XInputdResetDevice", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 494, + "ordinal_hex": "0x000001EE", + "name": "XInputdSetRingOfLight", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 495, + "ordinal_hex": "0x000001EF", + "name": "XInputdSetRFPowerMode", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 496, + "ordinal_hex": "0x000001F0", + "name": "XInputdSetRadioFrequency", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 497, + "ordinal_hex": "0x000001F1", + "name": "HidGetLastInputTime", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 498, + "ordinal_hex": "0x000001F2", + "name": "XAudioRenderDriverInitialize", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 499, + "ordinal_hex": "0x000001F3", + "name": "XAudioRegisterRenderDriverClient", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Audio", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_audio.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 500, + "ordinal_hex": "0x000001F4", + "name": "XAudioUnregisterRenderDriverClient", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Audio", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_audio.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 501, + "ordinal_hex": "0x000001F5", + "name": "XAudioSubmitRenderDriverFrame", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "HighFrequency" + ], + "category": "Audio", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_audio.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 502, + "ordinal_hex": "0x000001F6", + "name": "XAudioRenderDriverLock", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 503, + "ordinal_hex": "0x000001F7", + "name": "XAudioGetVoiceCategoryVolumeChangeMask", + "type": "function", + "status": "stub", + "tags": [ + "Stub", + "HighFrequency" + ], + "category": "Audio", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_audio.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 504, + "ordinal_hex": "0x000001F8", + "name": "XAudioGetVoiceCategoryVolume", + "type": "function", + "status": "stub", + "tags": [ + "Stub", + "HighFrequency" + ], + "category": "Audio", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_audio.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 505, + "ordinal_hex": "0x000001F9", + "name": "XAudioSetVoiceCategoryVolume", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 506, + "ordinal_hex": "0x000001FA", + "name": "XAudioBeginDigitalBypassMode", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 507, + "ordinal_hex": "0x000001FB", + "name": "XAudioEndDigitalBypassMode", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 508, + "ordinal_hex": "0x000001FC", + "name": "XAudioSubmitDigitalPacket", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 509, + "ordinal_hex": "0x000001FD", + "name": "XAudioQueryDriverPerformance", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 510, + "ordinal_hex": "0x000001FE", + "name": "XAudioGetRenderDriverThread", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 511, + "ordinal_hex": "0x000001FF", + "name": "XAudioGetSpeakerConfig", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Audio", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_audio.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 512, + "ordinal_hex": "0x00000200", + "name": "XAudioSetSpeakerConfig", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 513, + "ordinal_hex": "0x00000201", + "name": "NicSetUnicastAddress", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 514, + "ordinal_hex": "0x00000202", + "name": "NicAttach", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 515, + "ordinal_hex": "0x00000203", + "name": "NicDetach", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 516, + "ordinal_hex": "0x00000204", + "name": "NicXmit", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 517, + "ordinal_hex": "0x00000205", + "name": "NicUpdateMcastMembership", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 518, + "ordinal_hex": "0x00000206", + "name": "NicFlushXmitQueue", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 519, + "ordinal_hex": "0x00000207", + "name": "NicShutdown", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 520, + "ordinal_hex": "0x00000208", + "name": "NicGetLinkState", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 521, + "ordinal_hex": "0x00000209", + "name": "NicGetStats", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 522, + "ordinal_hex": "0x0000020A", + "name": "NicGetOpt", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 523, + "ordinal_hex": "0x0000020B", + "name": "NicSetOpt", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 524, + "ordinal_hex": "0x0000020C", + "name": "DrvSetSysReqCallback", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 525, + "ordinal_hex": "0x0000020D", + "name": "DrvSetUserBindingCallback", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 526, + "ordinal_hex": "0x0000020E", + "name": "DrvSetContentStorageCallback", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 527, + "ordinal_hex": "0x0000020F", + "name": "DrvSetAutobind", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 528, + "ordinal_hex": "0x00000210", + "name": "DrvGetContentStorageNotification", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 529, + "ordinal_hex": "0x00000211", + "name": "MtpdBeginTransaction", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 530, + "ordinal_hex": "0x00000212", + "name": "MtpdCancelTransaction", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 531, + "ordinal_hex": "0x00000213", + "name": "MtpdEndTransaction", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 532, + "ordinal_hex": "0x00000214", + "name": "MtpdGetCurrentDevices", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 533, + "ordinal_hex": "0x00000215", + "name": "MtpdReadData", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 534, + "ordinal_hex": "0x00000216", + "name": "MtpdReadEvent", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 535, + "ordinal_hex": "0x00000217", + "name": "MtpdResetDevice", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 536, + "ordinal_hex": "0x00000218", + "name": "MtpdSendData", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 537, + "ordinal_hex": "0x00000219", + "name": "MtpdVerifyProximity", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 538, + "ordinal_hex": "0x0000021A", + "name": "XUsbcamSetCaptureMode", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 539, + "ordinal_hex": "0x0000021B", + "name": "XUsbcamGetConfig", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 540, + "ordinal_hex": "0x0000021C", + "name": "XUsbcamSetConfig", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 541, + "ordinal_hex": "0x0000021D", + "name": "XUsbcamGetState", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_usbcam.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 542, + "ordinal_hex": "0x0000021E", + "name": "XUsbcamReadFrame", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 543, + "ordinal_hex": "0x0000021F", + "name": "XUsbcamSnapshot", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 544, + "ordinal_hex": "0x00000220", + "name": "XUsbcamSetView", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 545, + "ordinal_hex": "0x00000221", + "name": "XUsbcamGetView", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 546, + "ordinal_hex": "0x00000222", + "name": "XUsbcamCreate", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_usbcam.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 547, + "ordinal_hex": "0x00000223", + "name": "XUsbcamDestroy", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 548, + "ordinal_hex": "0x00000224", + "name": "XMACreateContext", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "HighFrequency" + ], + "category": "Audio", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_audio_xma.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 549, + "ordinal_hex": "0x00000225", + "name": "XMAInitializeContext", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "HighFrequency" + ], + "category": "Audio", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_audio_xma.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 550, + "ordinal_hex": "0x00000226", + "name": "XMAReleaseContext", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "HighFrequency" + ], + "category": "Audio", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_audio_xma.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 551, + "ordinal_hex": "0x00000227", + "name": "XMAEnableContext", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "HighFrequency" + ], + "category": "Audio", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_audio_xma.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 552, + "ordinal_hex": "0x00000228", + "name": "XMADisableContext", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "HighFrequency" + ], + "category": "Audio", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_audio_xma.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 553, + "ordinal_hex": "0x00000229", + "name": "XMAGetOutputBufferWriteOffset", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "HighFrequency" + ], + "category": "Audio", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_audio_xma.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 554, + "ordinal_hex": "0x0000022A", + "name": "XMASetOutputBufferReadOffset", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "HighFrequency" + ], + "category": "Audio", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_audio_xma.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 555, + "ordinal_hex": "0x0000022B", + "name": "XMAGetOutputBufferReadOffset", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "HighFrequency" + ], + "category": "Audio", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_audio_xma.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 556, + "ordinal_hex": "0x0000022C", + "name": "XMASetOutputBufferValid", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "HighFrequency" + ], + "category": "Audio", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_audio_xma.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 557, + "ordinal_hex": "0x0000022D", + "name": "XMAIsOutputBufferValid", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "HighFrequency" + ], + "category": "Audio", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_audio_xma.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 558, + "ordinal_hex": "0x0000022E", + "name": "XMASetInputBuffer0Valid", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "HighFrequency" + ], + "category": "Audio", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_audio_xma.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 559, + "ordinal_hex": "0x0000022F", + "name": "XMAIsInputBuffer0Valid", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "HighFrequency" + ], + "category": "Audio", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_audio_xma.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 560, + "ordinal_hex": "0x00000230", + "name": "XMASetInputBuffer1Valid", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "HighFrequency" + ], + "category": "Audio", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_audio_xma.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 561, + "ordinal_hex": "0x00000231", + "name": "XMAIsInputBuffer1Valid", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "HighFrequency" + ], + "category": "Audio", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_audio_xma.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 562, + "ordinal_hex": "0x00000232", + "name": "XMASetInputBuffer0", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "HighFrequency" + ], + "category": "Audio", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_audio_xma.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 563, + "ordinal_hex": "0x00000233", + "name": "XMASetInputBuffer1", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "HighFrequency" + ], + "category": "Audio", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_audio_xma.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 564, + "ordinal_hex": "0x00000234", + "name": "XMAGetPacketMetadata", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Audio", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_audio_xma.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 565, + "ordinal_hex": "0x00000235", + "name": "XMABlockWhileInUse", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "HighFrequency" + ], + "category": "Audio", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_audio_xma.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 566, + "ordinal_hex": "0x00000236", + "name": "XMASetLoopData", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "HighFrequency" + ], + "category": "Audio", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_audio_xma.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 567, + "ordinal_hex": "0x00000237", + "name": "XMASetInputBufferReadOffset", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "HighFrequency" + ], + "category": "Audio", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_audio_xma.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 568, + "ordinal_hex": "0x00000238", + "name": "XMAGetInputBufferReadOffset", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "HighFrequency" + ], + "category": "Audio", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_audio_xma.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 569, + "ordinal_hex": "0x00000239", + "name": "ExIsBetaFeatureEnabled", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 570, + "ordinal_hex": "0x0000023A", + "name": "XeKeysGetFactoryChallenge", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 571, + "ordinal_hex": "0x0000023B", + "name": "XeKeysSetFactoryResponse", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 572, + "ordinal_hex": "0x0000023C", + "name": "XeKeysInitializeFuses", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 573, + "ordinal_hex": "0x0000023D", + "name": "XeKeysSaveBootLoader", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 574, + "ordinal_hex": "0x0000023E", + "name": "XeKeysSaveKeyVault", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 575, + "ordinal_hex": "0x0000023F", + "name": "XeKeysGetStatus", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 576, + "ordinal_hex": "0x00000240", + "name": "XeKeysGeneratePrivateKey", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 577, + "ordinal_hex": "0x00000241", + "name": "XeKeysGetKeyProperties", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_crypt.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 578, + "ordinal_hex": "0x00000242", + "name": "XeKeysSetKey", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 579, + "ordinal_hex": "0x00000243", + "name": "XeKeysGenerateRandomKey", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 580, + "ordinal_hex": "0x00000244", + "name": "XeKeysGetKey", + "type": "function", + "status": "sketchy", + "tags": [ + "Sketchy" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_crypt.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 581, + "ordinal_hex": "0x00000245", + "name": "XeKeysGetDigest", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 582, + "ordinal_hex": "0x00000246", + "name": "XeKeysGetConsoleID", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_crypt.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 583, + "ordinal_hex": "0x00000247", + "name": "XeKeysGetConsoleType", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_crypt.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 584, + "ordinal_hex": "0x00000248", + "name": "XeKeysQwNeRsaPrvCrypt", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 585, + "ordinal_hex": "0x00000249", + "name": "XeKeysHmacSha", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_crypt.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 586, + "ordinal_hex": "0x0000024A", + "name": "XInputdPassThroughRFCommand", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 587, + "ordinal_hex": "0x0000024B", + "name": "XeKeysAesCbc", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 588, + "ordinal_hex": "0x0000024C", + "name": "XeKeysDes2Cbc", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 589, + "ordinal_hex": "0x0000024D", + "name": "XeKeysDesCbc", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 590, + "ordinal_hex": "0x0000024E", + "name": "XeKeysObscureKey", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_crypt.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 591, + "ordinal_hex": "0x0000024F", + "name": "XeKeysHmacShaUsingKey", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_crypt.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 592, + "ordinal_hex": "0x00000250", + "name": "XeKeysSaveBootLoaderEx", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 593, + "ordinal_hex": "0x00000251", + "name": "XeKeysAesCbcUsingKey", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_crypt.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 594, + "ordinal_hex": "0x00000252", + "name": "XeKeysDes2CbcUsingKey", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 595, + "ordinal_hex": "0x00000253", + "name": "XeKeysDesCbcUsingKey", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 596, + "ordinal_hex": "0x00000254", + "name": "XeKeysObfuscate", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 597, + "ordinal_hex": "0x00000255", + "name": "XeKeysUnObfuscate", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 598, + "ordinal_hex": "0x00000256", + "name": "XeKeysConsolePrivateKeySign", + "type": "function", + "status": "sketchy", + "tags": [ + "Sketchy" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_crypt.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 599, + "ordinal_hex": "0x00000257", + "name": "XeKeysConsoleSignatureVerification", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 600, + "ordinal_hex": "0x00000258", + "name": "XeKeysVerifyRSASignature", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 601, + "ordinal_hex": "0x00000259", + "name": "StfsCreateDevice", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 602, + "ordinal_hex": "0x0000025A", + "name": "StfsControlDevice", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 603, + "ordinal_hex": "0x0000025B", + "name": "VdSwap", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "HighFrequency", + "Important" + ], + "category": "Video", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_video.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 604, + "ordinal_hex": "0x0000025C", + "name": "HalFsbInterruptCount", + "type": "variable", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 605, + "ordinal_hex": "0x0000025D", + "name": "XeKeysSaveSystemUpdate", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 606, + "ordinal_hex": "0x0000025E", + "name": "XeKeysLockSystemUpdate", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 607, + "ordinal_hex": "0x0000025F", + "name": "XeKeysExecute", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 608, + "ordinal_hex": "0x00000260", + "name": "XeKeysGetVersions", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 609, + "ordinal_hex": "0x00000261", + "name": "XInputdPowerDownDevice", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 610, + "ordinal_hex": "0x00000262", + "name": "AniBlockOnAnimation", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 611, + "ordinal_hex": "0x00000263", + "name": "AniTerminateAnimation", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 612, + "ordinal_hex": "0x00000264", + "name": "XUsbcamReset", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 613, + "ordinal_hex": "0x00000265", + "name": "AniSetLogo", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 614, + "ordinal_hex": "0x00000266", + "name": "KeCertMonitorData", + "type": "variable", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_module.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 615, + "ordinal_hex": "0x00000267", + "name": "HalIsExecutingPowerDownDpc", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 616, + "ordinal_hex": "0x00000268", + "name": "VdInitializeEDRAM", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 617, + "ordinal_hex": "0x00000269", + "name": "VdRetrainEDRAM", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Video", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_video.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 618, + "ordinal_hex": "0x0000026A", + "name": "VdRetrainEDRAMWorker", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Video", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_video.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 619, + "ordinal_hex": "0x0000026B", + "name": "VdHSIOTrainCount", + "type": "variable", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 620, + "ordinal_hex": "0x0000026C", + "name": "HalGetPowerUpCause", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 621, + "ordinal_hex": "0x0000026D", + "name": "VdHSIOTrainingStatus", + "type": "variable", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 622, + "ordinal_hex": "0x0000026E", + "name": "RgcBindInfo", + "type": "variable", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 623, + "ordinal_hex": "0x0000026F", + "name": "VdReadEEDIDBlock", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 624, + "ordinal_hex": "0x00000270", + "name": "VdEnumerateVideoModes", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 625, + "ordinal_hex": "0x00000271", + "name": "VdEnableHDCP", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 626, + "ordinal_hex": "0x00000272", + "name": "VdRegisterHDCPNotification", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 627, + "ordinal_hex": "0x00000273", + "name": "HidReadMouseChanges", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 628, + "ordinal_hex": "0x00000274", + "name": "DumpSetCollectionFacility", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 629, + "ordinal_hex": "0x00000275", + "name": "XexTransformImageKey", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 630, + "ordinal_hex": "0x00000276", + "name": "XAudioOverrideSpeakerConfig", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 631, + "ordinal_hex": "0x00000277", + "name": "XInputdReadTextKeystroke", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 632, + "ordinal_hex": "0x00000278", + "name": "DrvXenonButtonPressed", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 633, + "ordinal_hex": "0x00000279", + "name": "DrvBindToUser", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 634, + "ordinal_hex": "0x0000027A", + "name": "XexGetModuleImportVersions", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 635, + "ordinal_hex": "0x0000027B", + "name": "RtlComputeCrc32", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_rtl.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 636, + "ordinal_hex": "0x0000027C", + "name": "XeKeysSetRevocationList", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 637, + "ordinal_hex": "0x0000027D", + "name": "HalRegisterPowerDownCallback", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 638, + "ordinal_hex": "0x0000027E", + "name": "VdGetDisplayDiscoveryData", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 639, + "ordinal_hex": "0x0000027F", + "name": "XInputdSendStayAliveRequest", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 640, + "ordinal_hex": "0x00000280", + "name": "XVoicedSendVPort", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 641, + "ordinal_hex": "0x00000281", + "name": "XVoicedGetBatteryStatus", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 642, + "ordinal_hex": "0x00000282", + "name": "XInputdFFGetDeviceInfo", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 643, + "ordinal_hex": "0x00000283", + "name": "XInputdFFSetEffect", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 644, + "ordinal_hex": "0x00000284", + "name": "XInputdFFUpdateEffect", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 645, + "ordinal_hex": "0x00000285", + "name": "XInputdFFEffectOperation", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 646, + "ordinal_hex": "0x00000286", + "name": "XInputdFFDeviceControl", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 647, + "ordinal_hex": "0x00000287", + "name": "XInputdFFSetDeviceGain", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 648, + "ordinal_hex": "0x00000288", + "name": "XInputdFFCancelIo", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 649, + "ordinal_hex": "0x00000289", + "name": "XInputdFFSetRumble", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 650, + "ordinal_hex": "0x0000028A", + "name": "NtAllocateEncryptedMemory", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Memory", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_memory.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 651, + "ordinal_hex": "0x0000028B", + "name": "NtFreeEncryptedMemory", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Memory", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_memory.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 652, + "ordinal_hex": "0x0000028C", + "name": "XeKeysExSaveKeyVault", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 653, + "ordinal_hex": "0x0000028D", + "name": "XeKeysExSetKey", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 654, + "ordinal_hex": "0x0000028E", + "name": "XeKeysExGetKey", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 655, + "ordinal_hex": "0x0000028F", + "name": "DrvSetDeviceConfigChangeCallback", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 656, + "ordinal_hex": "0x00000290", + "name": "DrvDeviceConfigChange", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 657, + "ordinal_hex": "0x00000291", + "name": "HalRegisterHdDvdRomNotification", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 658, + "ordinal_hex": "0x00000292", + "name": "XeKeysSecurityInitialize", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 659, + "ordinal_hex": "0x00000293", + "name": "XeKeysSecurityLoadSettings", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 660, + "ordinal_hex": "0x00000294", + "name": "XeKeysSecuritySaveSettings", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 661, + "ordinal_hex": "0x00000295", + "name": "XeKeysSecuritySetDetected", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 662, + "ordinal_hex": "0x00000296", + "name": "XeKeysSecurityGetDetected", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 663, + "ordinal_hex": "0x00000297", + "name": "XeKeysSecuritySetActivated", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 664, + "ordinal_hex": "0x00000298", + "name": "XeKeysSecurityGetActivated", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 665, + "ordinal_hex": "0x00000299", + "name": "XeKeysDvdAuthAP25InstallTable", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 666, + "ordinal_hex": "0x0000029A", + "name": "XeKeysDvdAuthAP25GetTableVersion", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 667, + "ordinal_hex": "0x0000029B", + "name": "XeKeysGetProtectedFlag", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 668, + "ordinal_hex": "0x0000029C", + "name": "XeKeysSetProtectedFlag", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 669, + "ordinal_hex": "0x0000029D", + "name": "KeEnablePFMInterrupt", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 670, + "ordinal_hex": "0x0000029E", + "name": "KeDisablePFMInterrupt", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 671, + "ordinal_hex": "0x0000029F", + "name": "KeSetProfilerISR", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 672, + "ordinal_hex": "0x000002A0", + "name": "VdStartDisplayDiscovery", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 673, + "ordinal_hex": "0x000002A1", + "name": "VdSetHDCPRevocationList", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 674, + "ordinal_hex": "0x000002A2", + "name": "XeKeysGetUpdateSequence", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 675, + "ordinal_hex": "0x000002A3", + "name": "XeKeysDvdAuthExActivate", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 676, + "ordinal_hex": "0x000002A4", + "name": "KeGetImagePageTableEntry", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Memory", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_memory.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 677, + "ordinal_hex": "0x000002A5", + "name": "HalRegisterBackgroundModeTransitionCallback", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 678, + "ordinal_hex": "0x000002A6", + "name": "AniStartBootAnimation", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 679, + "ordinal_hex": "0x000002A7", + "name": "HalClampUnclampOutputDACs", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 680, + "ordinal_hex": "0x000002A8", + "name": "HalPowerDownToBackgroundMode", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 681, + "ordinal_hex": "0x000002A9", + "name": "HalNotifyAddRemoveBackgroundTask", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 682, + "ordinal_hex": "0x000002AA", + "name": "HalCallBackgroundModeNotificationRoutines", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 683, + "ordinal_hex": "0x000002AB", + "name": "HalFsbResetCount", + "type": "variable", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 684, + "ordinal_hex": "0x000002AC", + "name": "HalGetMemoryInformation", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 685, + "ordinal_hex": "0x000002AD", + "name": "XInputdGetLastTextInputTime", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 686, + "ordinal_hex": "0x000002AE", + "name": "VdEnableWMAProOverHDMI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 687, + "ordinal_hex": "0x000002AF", + "name": "XeKeysRevokeSaveSettings", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 688, + "ordinal_hex": "0x000002B0", + "name": "XInputdSetTextMessengerIndicator", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 689, + "ordinal_hex": "0x000002B1", + "name": "MicDeviceRequest", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 690, + "ordinal_hex": "0x000002B2", + "name": "XeKeysGetMediaID", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 691, + "ordinal_hex": "0x000002B3", + "name": "XeKeysLoadKeyVault", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 692, + "ordinal_hex": "0x000002B4", + "name": "KeGetVidInfo", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 693, + "ordinal_hex": "0x000002B5", + "name": "HalNotifyBackgroundModeTransitionComplete", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 694, + "ordinal_hex": "0x000002B6", + "name": "IoAcquireCancelSpinLock", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 695, + "ordinal_hex": "0x000002B7", + "name": "IoReleaseCancelSpinLock", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 696, + "ordinal_hex": "0x000002B8", + "name": "NtCancelIoFile", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "FileSystem", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_io.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 697, + "ordinal_hex": "0x000002B9", + "name": "NtCancelIoFileEx", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 698, + "ordinal_hex": "0x000002BA", + "name": "HalFinalizePowerLossRecovery", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 699, + "ordinal_hex": "0x000002BB", + "name": "HalSetPowerLossRecovery", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 700, + "ordinal_hex": "0x000002BC", + "name": "ExReadModifyWriteXConfigSettingUlong", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Modules", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_xconfig.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 701, + "ordinal_hex": "0x000002BD", + "name": "HalRegisterXamPowerDownCallback", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 702, + "ordinal_hex": "0x000002BE", + "name": "ExCancelAlarm", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 703, + "ordinal_hex": "0x000002BF", + "name": "ExInitializeAlarm", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 704, + "ordinal_hex": "0x000002C0", + "name": "ExSetAlarm", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 705, + "ordinal_hex": "0x000002C1", + "name": "XexActivationGetNonce", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 706, + "ordinal_hex": "0x000002C2", + "name": "XexActivationSetLicense", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 707, + "ordinal_hex": "0x000002C3", + "name": "IptvSetBoundaryKey", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 708, + "ordinal_hex": "0x000002C4", + "name": "IptvSetSessionKey", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 709, + "ordinal_hex": "0x000002C5", + "name": "IptvVerifyOmac1Signature", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 710, + "ordinal_hex": "0x000002C6", + "name": "IptvGetAesCtrTransform", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 711, + "ordinal_hex": "0x000002C7", + "name": "SataCdRomRecordReset", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 712, + "ordinal_hex": "0x000002C8", + "name": "XInputdSetTextDeviceKeyLocks", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 713, + "ordinal_hex": "0x000002C9", + "name": "XInputdGetTextDeviceKeyLocks", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 714, + "ordinal_hex": "0x000002CA", + "name": "XexActivationVerifyOwnership", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 715, + "ordinal_hex": "0x000002CB", + "name": "XexDisableVerboseDbgPrint", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 716, + "ordinal_hex": "0x000002CC", + "name": "SvodCreateDevice", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 717, + "ordinal_hex": "0x000002CD", + "name": "RtlCaptureStackBackTrace", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 718, + "ordinal_hex": "0x000002CE", + "name": "XeKeysRevokeUpdateDynamic", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 719, + "ordinal_hex": "0x000002CF", + "name": "XexImportTraceEnable", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 720, + "ordinal_hex": "0x000002D0", + "name": "ExRegisterXConfigNotification", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 721, + "ordinal_hex": "0x000002D1", + "name": "XeKeysSecuritySetStat", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 722, + "ordinal_hex": "0x000002D2", + "name": "VdQueryRealVideoMode", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Video", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_video.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 723, + "ordinal_hex": "0x000002D3", + "name": "XexSetExecutablePrivilege", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 724, + "ordinal_hex": "0x000002D4", + "name": "XAudioSuspendRenderDriverClients", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 725, + "ordinal_hex": "0x000002D5", + "name": "IptvGetSessionKeyHash", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 726, + "ordinal_hex": "0x000002D6", + "name": "VdSetCGMSState", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 727, + "ordinal_hex": "0x000002D7", + "name": "VdSetSCMSState", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 728, + "ordinal_hex": "0x000002D8", + "name": "KeFlushMultipleTb", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 729, + "ordinal_hex": "0x000002D9", + "name": "VdGetOption", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 730, + "ordinal_hex": "0x000002DA", + "name": "VdSetOption", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 731, + "ordinal_hex": "0x000002DB", + "name": "UsbdBootEnumerationDoneEvent", + "type": "variable", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_module.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 732, + "ordinal_hex": "0x000002DC", + "name": "StfsDeviceErrorEvent", + "type": "variable", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 733, + "ordinal_hex": "0x000002DD", + "name": "ExTryToAcquireReadWriteLockExclusive", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 734, + "ordinal_hex": "0x000002DE", + "name": "ExTryToAcquireReadWriteLockShared", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 735, + "ordinal_hex": "0x000002DF", + "name": "XexSetLastKdcTime", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 736, + "ordinal_hex": "0x000002E0", + "name": "XInputdControl", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 737, + "ordinal_hex": "0x000002E1", + "name": "RmcDeviceRequest", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 738, + "ordinal_hex": "0x000002E2", + "name": "LDIResetDecompression", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 739, + "ordinal_hex": "0x000002E3", + "name": "NicRegisterDevice", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 740, + "ordinal_hex": "0x000002E4", + "name": "UsbdAddDeviceComplete", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 741, + "ordinal_hex": "0x000002E5", + "name": "UsbdCancelAsyncTransfer", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 742, + "ordinal_hex": "0x000002E6", + "name": "UsbdGetDeviceSpeed", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 743, + "ordinal_hex": "0x000002E7", + "name": "UsbdGetDeviceTopology", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 744, + "ordinal_hex": "0x000002E8", + "name": "UsbdGetEndpointDescriptor", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 745, + "ordinal_hex": "0x000002E9", + "name": "UsbdIsDeviceAuthenticated", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 746, + "ordinal_hex": "0x000002EA", + "name": "UsbdOpenDefaultEndpoint", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 747, + "ordinal_hex": "0x000002EB", + "name": "UsbdOpenEndpoint", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 748, + "ordinal_hex": "0x000002EC", + "name": "UsbdQueueAsyncTransfer", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 749, + "ordinal_hex": "0x000002ED", + "name": "UsbdQueueCloseDefaultEndpoint", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 750, + "ordinal_hex": "0x000002EE", + "name": "UsbdQueueCloseEndpoint", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 751, + "ordinal_hex": "0x000002EF", + "name": "UsbdRemoveDeviceComplete", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 752, + "ordinal_hex": "0x000002F0", + "name": "KeRemoveQueueApc", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Threading", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_threading.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 753, + "ordinal_hex": "0x000002F1", + "name": "UsbdDriverLoadRequiredEvent", + "type": "variable", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 754, + "ordinal_hex": "0x000002F2", + "name": "UsbdGetRequiredDrivers", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 755, + "ordinal_hex": "0x000002F3", + "name": "UsbdRegisterDriverObject", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 756, + "ordinal_hex": "0x000002F4", + "name": "UsbdUnregisterDriverObject", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 757, + "ordinal_hex": "0x000002F5", + "name": "UsbdCallAndBlockOnDpcRoutine", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 758, + "ordinal_hex": "0x000002F6", + "name": "UsbdResetDevice", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 759, + "ordinal_hex": "0x000002F7", + "name": "UsbdGetDeviceDescriptor", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 760, + "ordinal_hex": "0x000002F8", + "name": "NomnilGetExtension", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 761, + "ordinal_hex": "0x000002F9", + "name": "NomnilStartCloseDevice", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 762, + "ordinal_hex": "0x000002FA", + "name": "WifiBeginAuthentication", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 763, + "ordinal_hex": "0x000002FB", + "name": "WifiCheckCounterMeasures", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 764, + "ordinal_hex": "0x000002FC", + "name": "WifiChooseAuthenCipherSetFromBSSID", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 765, + "ordinal_hex": "0x000002FD", + "name": "WifiCompleteAuthentication", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 766, + "ordinal_hex": "0x000002FE", + "name": "WifiGetAssociationIE", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 767, + "ordinal_hex": "0x000002FF", + "name": "WifiOnMICError", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 768, + "ordinal_hex": "0x00000300", + "name": "WifiPrepareAuthenticationContext", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 769, + "ordinal_hex": "0x00000301", + "name": "WifiRecvEAPOLPacket", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 770, + "ordinal_hex": "0x00000302", + "name": "WifiDeduceNetworkType", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 771, + "ordinal_hex": "0x00000303", + "name": "NicUnregisterDevice", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 772, + "ordinal_hex": "0x00000304", + "name": "DumpXitThread", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 773, + "ordinal_hex": "0x00000305", + "name": "XInputdSetWifiChannel", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 774, + "ordinal_hex": "0x00000306", + "name": "NomnilSetLed", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 775, + "ordinal_hex": "0x00000307", + "name": "WifiCalculateRegulatoryDomain", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 776, + "ordinal_hex": "0x00000308", + "name": "WifiSelectAdHocChannel", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 777, + "ordinal_hex": "0x00000309", + "name": "WifiChannelToFrequency", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 778, + "ordinal_hex": "0x0000030A", + "name": "MmGetPoolPagesType", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 779, + "ordinal_hex": "0x0000030B", + "name": "ExExpansionInstall", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 780, + "ordinal_hex": "0x0000030C", + "name": "ExExpansionCall", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 781, + "ordinal_hex": "0x0000030D", + "name": "PsCamDeviceRequest", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 782, + "ordinal_hex": "0x0000030E", + "name": "McaDeviceRequest", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 783, + "ordinal_hex": "0x0000030F", + "name": "DetroitDeviceRequest", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 784, + "ordinal_hex": "0x00000310", + "name": "XeCryptSha256Init", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_crypt.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 785, + "ordinal_hex": "0x00000311", + "name": "XeCryptSha256Update", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_crypt.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 786, + "ordinal_hex": "0x00000312", + "name": "XeCryptSha256Final", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_crypt.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 787, + "ordinal_hex": "0x00000313", + "name": "XeCryptSha256", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 788, + "ordinal_hex": "0x00000314", + "name": "XeCryptSha384Init", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 789, + "ordinal_hex": "0x00000315", + "name": "XeCryptSha384Update", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 790, + "ordinal_hex": "0x00000316", + "name": "XInputdGetDevicePid", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 791, + "ordinal_hex": "0x00000317", + "name": "HalGetNotedArgonErrors", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 792, + "ordinal_hex": "0x00000318", + "name": "XeCryptSha384Final", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 793, + "ordinal_hex": "0x00000319", + "name": "HalReadArgonEeprom", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 794, + "ordinal_hex": "0x0000031A", + "name": "HalWriteArgonEeprom", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 795, + "ordinal_hex": "0x0000031B", + "name": "XeKeysFcrtLoad", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 796, + "ordinal_hex": "0x0000031C", + "name": "XeKeysFcrtSave", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 797, + "ordinal_hex": "0x0000031D", + "name": "XeKeysFcrtSet", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 798, + "ordinal_hex": "0x0000031E", + "name": "XeCryptSha384", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 799, + "ordinal_hex": "0x0000031F", + "name": "XeCryptSha512Init", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_crypt.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 800, + "ordinal_hex": "0x00000320", + "name": "XAudioRegisterRenderDriverMECClient", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 801, + "ordinal_hex": "0x00000321", + "name": "XAudioUnregisterRenderDriverMECClient", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 802, + "ordinal_hex": "0x00000322", + "name": "XAudioCaptureRenderDriverFrame", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 803, + "ordinal_hex": "0x00000323", + "name": "XeCryptSha512Update", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_crypt.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 804, + "ordinal_hex": "0x00000324", + "name": "XeCryptSha512Final", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_crypt.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 805, + "ordinal_hex": "0x00000325", + "name": "XeCryptSha512", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 806, + "ordinal_hex": "0x00000326", + "name": "XeCryptBnQwNeCompare", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 807, + "ordinal_hex": "0x00000327", + "name": "XVoicedGetDirectionalData", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 808, + "ordinal_hex": "0x00000328", + "name": "DrvSetMicArrayStartCallback", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 809, + "ordinal_hex": "0x00000329", + "name": "DevAuthGetStatistics", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 810, + "ordinal_hex": "0x0000032A", + "name": "NullCableRequest", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 811, + "ordinal_hex": "0x0000032B", + "name": "XeKeysRevokeIsDeviceRevoked", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 812, + "ordinal_hex": "0x0000032C", + "name": "DumpUpdateDumpSettings", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 813, + "ordinal_hex": "0x0000032D", + "name": "EtxConsumerDisableEventType", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 814, + "ordinal_hex": "0x0000032E", + "name": "EtxConsumerEnableEventType", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 815, + "ordinal_hex": "0x0000032F", + "name": "EtxConsumerProcessLogs", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 816, + "ordinal_hex": "0x00000330", + "name": "EtxConsumerRegister", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 817, + "ordinal_hex": "0x00000331", + "name": "EtxConsumerUnregister", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 818, + "ordinal_hex": "0x00000332", + "name": "EtxProducerLog", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 819, + "ordinal_hex": "0x00000333", + "name": "EtxProducerLogV", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 820, + "ordinal_hex": "0x00000334", + "name": "EtxProducerRegister", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 821, + "ordinal_hex": "0x00000335", + "name": "EtxProducerUnregister", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 822, + "ordinal_hex": "0x00000336", + "name": "EtxConsumerFlushBuffers", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 823, + "ordinal_hex": "0x00000337", + "name": "EtxProducerLogXwpp", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 824, + "ordinal_hex": "0x00000338", + "name": "EtxProducerLogXwppV", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 825, + "ordinal_hex": "0x00000339", + "name": "UsbdEnableDisableRootHubPort", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 826, + "ordinal_hex": "0x0000033A", + "name": "EtxBufferRegister", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 827, + "ordinal_hex": "0x0000033B", + "name": "EtxBufferUnregister", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 828, + "ordinal_hex": "0x0000033C", + "name": "DumpRegisterDedicatedDataBlock", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 829, + "ordinal_hex": "0x0000033D", + "name": "XeKeysDvdAuthExSave", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 830, + "ordinal_hex": "0x0000033E", + "name": "XeKeysDvdAuthExInstall", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 831, + "ordinal_hex": "0x0000033F", + "name": "XexShimDisable", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 832, + "ordinal_hex": "0x00000340", + "name": "XexShimEnable", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 833, + "ordinal_hex": "0x00000341", + "name": "XexShimEntryDisable", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 834, + "ordinal_hex": "0x00000342", + "name": "XexShimEntryEnable", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 835, + "ordinal_hex": "0x00000343", + "name": "XexShimEntryRegister", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 836, + "ordinal_hex": "0x00000344", + "name": "XexShimLock", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 837, + "ordinal_hex": "0x00000345", + "name": "XboxKrnlVersion4Digit", + "type": "variable", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 838, + "ordinal_hex": "0x00000346", + "name": "XeKeysObfuscateEx", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 839, + "ordinal_hex": "0x00000347", + "name": "XeKeysUnObfuscateEx", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 840, + "ordinal_hex": "0x00000348", + "name": "XexTitleHash", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 841, + "ordinal_hex": "0x00000349", + "name": "XexTitleHashClose", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 842, + "ordinal_hex": "0x0000034A", + "name": "XexTitleHashContinue", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 843, + "ordinal_hex": "0x0000034B", + "name": "XexTitleHashOpen", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 844, + "ordinal_hex": "0x0000034C", + "name": "XAudioGetRenderDriverTic", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 845, + "ordinal_hex": "0x0000034D", + "name": "XAudioEnableDucker", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Audio", + "source_file": "src/xenia/kernel/xboxkrnl/xboxkrnl_audio.cc" + }, + { + "module": "xboxkrnl", + "ordinal": 846, + "ordinal_hex": "0x0000034E", + "name": "XAudioSetDuckerLevel", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 847, + "ordinal_hex": "0x0000034F", + "name": "XAudioIsDuckerEnabled", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 848, + "ordinal_hex": "0x00000350", + "name": "XAudioGetDuckerLevel", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 849, + "ordinal_hex": "0x00000351", + "name": "XAudioGetDuckerThreshold", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 850, + "ordinal_hex": "0x00000352", + "name": "XAudioSetDuckerThreshold", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 851, + "ordinal_hex": "0x00000353", + "name": "XAudioGetDuckerAttackTime", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 852, + "ordinal_hex": "0x00000354", + "name": "XAudioSetDuckerAttackTime", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 853, + "ordinal_hex": "0x00000355", + "name": "XAudioGetDuckerReleaseTime", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 854, + "ordinal_hex": "0x00000356", + "name": "XAudioSetDuckerReleaseTime", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 855, + "ordinal_hex": "0x00000357", + "name": "XAudioGetDuckerHoldTime", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 856, + "ordinal_hex": "0x00000358", + "name": "XAudioSetDuckerHoldTime", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 857, + "ordinal_hex": "0x00000359", + "name": "DevAuthShouldAlwaysEnforce", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 858, + "ordinal_hex": "0x0000035A", + "name": "XAudioGetUnderrunCount", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 859, + "ordinal_hex": "0x0000035B", + "name": "DrvSetAudioLatencyCallback", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 860, + "ordinal_hex": "0x0000035C", + "name": "XVoicedIsActiveProcess", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 861, + "ordinal_hex": "0x0000035D", + "name": "KeExecuteOnProtectedStack", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 862, + "ordinal_hex": "0x0000035E", + "name": "XeKeysVerifyPIRSSignature", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 863, + "ordinal_hex": "0x0000035F", + "name": "XeCryptAesCtr", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 864, + "ordinal_hex": "0x00000360", + "name": "XeCryptAesCbcMac", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 865, + "ordinal_hex": "0x00000361", + "name": "XeCryptAesDmMac", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 866, + "ordinal_hex": "0x00000362", + "name": "EmaExecute", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 867, + "ordinal_hex": "0x00000363", + "name": "XeKeysGetTruncatedSecondaryConsoleId", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 868, + "ordinal_hex": "0x00000364", + "name": "ExFreeDebugPool", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 869, + "ordinal_hex": "0x00000365", + "name": "VdQueryVideoCapabilities", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 870, + "ordinal_hex": "0x00000366", + "name": "UsbdGetDeviceRootPortType", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 871, + "ordinal_hex": "0x00000367", + "name": "VdGet3dVideoFormat", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 872, + "ordinal_hex": "0x00000368", + "name": "VdGetWSS2Data", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 873, + "ordinal_hex": "0x00000369", + "name": "VdSet3dVideoFormat", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 874, + "ordinal_hex": "0x0000036A", + "name": "VdSetWSS2Data", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 875, + "ordinal_hex": "0x0000036B", + "name": "XexReserveCodeBuffer", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 876, + "ordinal_hex": "0x0000036C", + "name": "XexCommitCodeBuffer", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 877, + "ordinal_hex": "0x0000036D", + "name": "RtlSetVectoredExceptionHandler", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 878, + "ordinal_hex": "0x0000036E", + "name": "RtlClearVectoredExceptionHandler", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 879, + "ordinal_hex": "0x0000036F", + "name": "XAudioSetProcessFrameCallback", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 880, + "ordinal_hex": "0x00000370", + "name": "UsbdGetRootHubDeviceNode", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 881, + "ordinal_hex": "0x00000371", + "name": "UsbdGetPortDeviceNode", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 882, + "ordinal_hex": "0x00000372", + "name": "UsbdGetNatalHub", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 883, + "ordinal_hex": "0x00000373", + "name": "UsbdGetNatalHardwareVersion", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 884, + "ordinal_hex": "0x00000374", + "name": "UsbdNatalHubRegisterNotificationCallback", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 885, + "ordinal_hex": "0x00000375", + "name": "KeCallAndBlockOnDpcRoutine", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 886, + "ordinal_hex": "0x00000376", + "name": "KeCallAndWaitForDpcRoutine", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 887, + "ordinal_hex": "0x00000377", + "name": "TidDeviceRequest", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 888, + "ordinal_hex": "0x00000378", + "name": "DmPrintData", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 889, + "ordinal_hex": "0x00000379", + "name": "VdSetStudioRGBMode", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 890, + "ordinal_hex": "0x0000037A", + "name": "UsbdTitleDriverResetAllUnrecognizedPorts", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 891, + "ordinal_hex": "0x0000037B", + "name": "UsbdTitleDriverSetUnrecognizedPort", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 892, + "ordinal_hex": "0x0000037C", + "name": "UsbdResetEndpoint", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 893, + "ordinal_hex": "0x0000037D", + "name": "UsbdSetTimer", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 894, + "ordinal_hex": "0x0000037E", + "name": "UsbdCancelTimer", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 895, + "ordinal_hex": "0x0000037F", + "name": "UsbdQueueIsochTransfer", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 896, + "ordinal_hex": "0x00000380", + "name": "KeSetPageRelocationCallback", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 897, + "ordinal_hex": "0x00000381", + "name": "XexRegisterUsermodeModule", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 899, + "ordinal_hex": "0x00000383", + "name": "TitleDeviceAuthRequest", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 900, + "ordinal_hex": "0x00000384", + "name": "KeRegisterSwapNotification", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 901, + "ordinal_hex": "0x00000385", + "name": "XInputdGetFailedConnectionOrBind", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 902, + "ordinal_hex": "0x00000386", + "name": "XInputdSetFailedConnectionOrBindCallback", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 904, + "ordinal_hex": "0x00000388", + "name": "XInputdSetMinMaxAuthDelay", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 905, + "ordinal_hex": "0x00000389", + "name": "VgcHandler_SetHandlers", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 906, + "ordinal_hex": "0x0000038A", + "name": "VvcHandlerCancelTransfers", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 907, + "ordinal_hex": "0x0000038B", + "name": "VvcHandlerRetrieveVoiceExtension", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 909, + "ordinal_hex": "0x0000038D", + "name": "MmResetLowestAvailablePages", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 916, + "ordinal_hex": "0x00000394", + "name": "VeSetHandlers", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 917, + "ordinal_hex": "0x00000395", + "name": "HalConfigureVeDevice", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 918, + "ordinal_hex": "0x00000396", + "name": "XeCryptSha224Init", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 919, + "ordinal_hex": "0x00000397", + "name": "XeCryptAesCreateKeySchedule", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 920, + "ordinal_hex": "0x00000398", + "name": "XeCryptAesEncryptOne", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 921, + "ordinal_hex": "0x00000399", + "name": "XeCryptAesDecryptOne", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 922, + "ordinal_hex": "0x0000039A", + "name": "XeCryptAesCbcEncrypt", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 923, + "ordinal_hex": "0x0000039B", + "name": "XeCryptAesCbcDecrypt", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 924, + "ordinal_hex": "0x0000039C", + "name": "XeCryptAesGcmInitialize", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 925, + "ordinal_hex": "0x0000039D", + "name": "XeCryptAesGcmUpdate", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 926, + "ordinal_hex": "0x0000039E", + "name": "XeCryptAesGcmFinalize", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 927, + "ordinal_hex": "0x0000039F", + "name": "XeCryptEccGetCurveParameters", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 928, + "ordinal_hex": "0x000003A0", + "name": "XeCryptEccEcdhGenerateKeypair", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 929, + "ordinal_hex": "0x000003A1", + "name": "XeCryptEccEcdhExponentiate", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 930, + "ordinal_hex": "0x000003A2", + "name": "XeCryptEccEcdsaGenerateSignature", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xboxkrnl", + "ordinal": 931, + "ordinal_hex": "0x000003A3", + "name": "XeCryptEccEcdsaVerifySignature", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + } + ] + }, + "xam": { + "file": "xam.xex", + "exports": [ + { + "module": "xam", + "ordinal": 1, + "ordinal_hex": "0x00000001", + "name": "NetDll_WSAStartup", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Networking", + "source_file": "src/xenia/kernel/xam/xam_net.cc" + }, + { + "module": "xam", + "ordinal": 2, + "ordinal_hex": "0x00000002", + "name": "NetDll_WSACleanup", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Networking", + "source_file": "src/xenia/kernel/xam/xam_net.cc" + }, + { + "module": "xam", + "ordinal": 3, + "ordinal_hex": "0x00000003", + "name": "NetDll_socket", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Networking", + "source_file": "src/xenia/kernel/xam/xam_net.cc" + }, + { + "module": "xam", + "ordinal": 4, + "ordinal_hex": "0x00000004", + "name": "NetDll_closesocket", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Networking", + "source_file": "src/xenia/kernel/xam/xam_net.cc" + }, + { + "module": "xam", + "ordinal": 5, + "ordinal_hex": "0x00000005", + "name": "NetDll_shutdown", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Networking", + "source_file": "src/xenia/kernel/xam/xam_net.cc" + }, + { + "module": "xam", + "ordinal": 6, + "ordinal_hex": "0x00000006", + "name": "NetDll_ioctlsocket", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Networking", + "source_file": "src/xenia/kernel/xam/xam_net.cc" + }, + { + "module": "xam", + "ordinal": 7, + "ordinal_hex": "0x00000007", + "name": "NetDll_setsockopt", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Networking", + "source_file": "src/xenia/kernel/xam/xam_net.cc" + }, + { + "module": "xam", + "ordinal": 8, + "ordinal_hex": "0x00000008", + "name": "NetDll_getsockopt", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Networking", + "source_file": "src/xenia/kernel/xam/xam_net.cc" + }, + { + "module": "xam", + "ordinal": 9, + "ordinal_hex": "0x00000009", + "name": "NetDll_getsockname", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Networking", + "source_file": "src/xenia/kernel/xam/xam_net.cc" + }, + { + "module": "xam", + "ordinal": 10, + "ordinal_hex": "0x0000000A", + "name": "NetDll_getpeername", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 11, + "ordinal_hex": "0x0000000B", + "name": "NetDll_bind", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Networking", + "source_file": "src/xenia/kernel/xam/xam_net.cc" + }, + { + "module": "xam", + "ordinal": 12, + "ordinal_hex": "0x0000000C", + "name": "NetDll_connect", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Networking", + "source_file": "src/xenia/kernel/xam/xam_net.cc" + }, + { + "module": "xam", + "ordinal": 13, + "ordinal_hex": "0x0000000D", + "name": "NetDll_listen", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Networking", + "source_file": "src/xenia/kernel/xam/xam_net.cc" + }, + { + "module": "xam", + "ordinal": 14, + "ordinal_hex": "0x0000000E", + "name": "NetDll_accept", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Networking", + "source_file": "src/xenia/kernel/xam/xam_net.cc" + }, + { + "module": "xam", + "ordinal": 15, + "ordinal_hex": "0x0000000F", + "name": "NetDll_select", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Networking", + "source_file": "src/xenia/kernel/xam/xam_net.cc" + }, + { + "module": "xam", + "ordinal": 16, + "ordinal_hex": "0x00000010", + "name": "NetDll_WSAGetOverlappedResult", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 17, + "ordinal_hex": "0x00000011", + "name": "NetDll_WSACancelOverlappedIO", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 18, + "ordinal_hex": "0x00000012", + "name": "NetDll_recv", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Networking", + "source_file": "src/xenia/kernel/xam/xam_net.cc" + }, + { + "module": "xam", + "ordinal": 19, + "ordinal_hex": "0x00000013", + "name": "NetDll_WSARecv", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 20, + "ordinal_hex": "0x00000014", + "name": "NetDll_recvfrom", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Networking", + "source_file": "src/xenia/kernel/xam/xam_net.cc" + }, + { + "module": "xam", + "ordinal": 21, + "ordinal_hex": "0x00000015", + "name": "NetDll_WSARecvFrom", + "type": "function", + "status": "stub", + "tags": [ + "Stub", + "HighFrequency" + ], + "category": "Networking", + "source_file": "src/xenia/kernel/xam/xam_net.cc" + }, + { + "module": "xam", + "ordinal": 22, + "ordinal_hex": "0x00000016", + "name": "NetDll_send", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Networking", + "source_file": "src/xenia/kernel/xam/xam_net.cc" + }, + { + "module": "xam", + "ordinal": 23, + "ordinal_hex": "0x00000017", + "name": "NetDll_WSASend", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 24, + "ordinal_hex": "0x00000018", + "name": "NetDll_sendto", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Networking", + "source_file": "src/xenia/kernel/xam/xam_net.cc" + }, + { + "module": "xam", + "ordinal": 25, + "ordinal_hex": "0x00000019", + "name": "NetDll_WSASendTo", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Networking", + "source_file": "src/xenia/kernel/xam/xam_net.cc" + }, + { + "module": "xam", + "ordinal": 26, + "ordinal_hex": "0x0000001A", + "name": "NetDll_inet_addr", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Networking", + "source_file": "src/xenia/kernel/xam/xam_net.cc" + }, + { + "module": "xam", + "ordinal": 27, + "ordinal_hex": "0x0000001B", + "name": "NetDll_WSAGetLastError", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Networking", + "source_file": "src/xenia/kernel/xam/xam_net.cc" + }, + { + "module": "xam", + "ordinal": 28, + "ordinal_hex": "0x0000001C", + "name": "NetDll_WSASetLastError", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Networking", + "source_file": "src/xenia/kernel/xam/xam_net.cc" + }, + { + "module": "xam", + "ordinal": 29, + "ordinal_hex": "0x0000001D", + "name": "NetDll_WSACreateEvent", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Networking", + "source_file": "src/xenia/kernel/xam/xam_net.cc" + }, + { + "module": "xam", + "ordinal": 30, + "ordinal_hex": "0x0000001E", + "name": "NetDll_WSACloseEvent", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Networking", + "source_file": "src/xenia/kernel/xam/xam_net.cc" + }, + { + "module": "xam", + "ordinal": 31, + "ordinal_hex": "0x0000001F", + "name": "NetDll_WSASetEvent", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Networking", + "source_file": "src/xenia/kernel/xam/xam_net.cc" + }, + { + "module": "xam", + "ordinal": 32, + "ordinal_hex": "0x00000020", + "name": "NetDll_WSAResetEvent", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Networking", + "source_file": "src/xenia/kernel/xam/xam_net.cc" + }, + { + "module": "xam", + "ordinal": 33, + "ordinal_hex": "0x00000021", + "name": "NetDll_WSAWaitForMultipleEvents", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "Blocking" + ], + "category": "Networking", + "source_file": "src/xenia/kernel/xam/xam_net.cc" + }, + { + "module": "xam", + "ordinal": 34, + "ordinal_hex": "0x00000022", + "name": "NetDll___WSAFDIsSet", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Networking", + "source_file": "src/xenia/kernel/xam/xam_net.cc" + }, + { + "module": "xam", + "ordinal": 35, + "ordinal_hex": "0x00000023", + "name": "NetDll_WSAEventSelect", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 36, + "ordinal_hex": "0x00000024", + "name": "NetDll_WSAStartupEx", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Networking", + "source_file": "src/xenia/kernel/xam/xam_net.cc" + }, + { + "module": "xam", + "ordinal": 51, + "ordinal_hex": "0x00000033", + "name": "NetDll_XNetStartup", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Networking", + "source_file": "src/xenia/kernel/xam/xam_net.cc" + }, + { + "module": "xam", + "ordinal": 52, + "ordinal_hex": "0x00000034", + "name": "NetDll_XNetCleanup", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Networking", + "source_file": "src/xenia/kernel/xam/xam_net.cc" + }, + { + "module": "xam", + "ordinal": 53, + "ordinal_hex": "0x00000035", + "name": "NetDll_XNetRandom", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Networking", + "source_file": "src/xenia/kernel/xam/xam_net.cc" + }, + { + "module": "xam", + "ordinal": 54, + "ordinal_hex": "0x00000036", + "name": "NetDll_XNetCreateKey", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Networking", + "source_file": "src/xenia/kernel/xam/xam_net.cc" + }, + { + "module": "xam", + "ordinal": 55, + "ordinal_hex": "0x00000037", + "name": "NetDll_XNetRegisterKey", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Networking", + "source_file": "src/xenia/kernel/xam/xam_net.cc" + }, + { + "module": "xam", + "ordinal": 56, + "ordinal_hex": "0x00000038", + "name": "NetDll_XNetUnregisterKey", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Networking", + "source_file": "src/xenia/kernel/xam/xam_net.cc" + }, + { + "module": "xam", + "ordinal": 57, + "ordinal_hex": "0x00000039", + "name": "NetDll_XNetXnAddrToInAddr", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Networking", + "source_file": "src/xenia/kernel/xam/xam_net.cc" + }, + { + "module": "xam", + "ordinal": 58, + "ordinal_hex": "0x0000003A", + "name": "NetDll_XNetServerToInAddr", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 59, + "ordinal_hex": "0x0000003B", + "name": "NetDll_XNetTsAddrToInAddr", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 60, + "ordinal_hex": "0x0000003C", + "name": "NetDll_XNetInAddrToXnAddr", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Networking", + "source_file": "src/xenia/kernel/xam/xam_net.cc" + }, + { + "module": "xam", + "ordinal": 61, + "ordinal_hex": "0x0000003D", + "name": "NetDll_XNetInAddrToServer", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 62, + "ordinal_hex": "0x0000003E", + "name": "NetDll_XNetInAddrToString", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Networking", + "source_file": "src/xenia/kernel/xam/xam_net.cc" + }, + { + "module": "xam", + "ordinal": 63, + "ordinal_hex": "0x0000003F", + "name": "NetDll_XNetUnregisterInAddr", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 64, + "ordinal_hex": "0x00000040", + "name": "NetDll_XNetXnAddrToMachineId", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Networking", + "source_file": "src/xenia/kernel/xam/xam_net.cc" + }, + { + "module": "xam", + "ordinal": 65, + "ordinal_hex": "0x00000041", + "name": "NetDll_XNetConnect", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 66, + "ordinal_hex": "0x00000042", + "name": "NetDll_XNetGetConnectStatus", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 67, + "ordinal_hex": "0x00000043", + "name": "NetDll_XNetDnsLookup", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Networking", + "source_file": "src/xenia/kernel/xam/xam_net.cc" + }, + { + "module": "xam", + "ordinal": 68, + "ordinal_hex": "0x00000044", + "name": "NetDll_XNetDnsRelease", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Networking", + "source_file": "src/xenia/kernel/xam/xam_net.cc" + }, + { + "module": "xam", + "ordinal": 69, + "ordinal_hex": "0x00000045", + "name": "NetDll_XNetQosListen", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Networking", + "source_file": "src/xenia/kernel/xam/xam_net.cc" + }, + { + "module": "xam", + "ordinal": 70, + "ordinal_hex": "0x00000046", + "name": "NetDll_XNetQosLookup", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 71, + "ordinal_hex": "0x00000047", + "name": "NetDll_XNetQosServiceLookup", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Networking", + "source_file": "src/xenia/kernel/xam/xam_net.cc" + }, + { + "module": "xam", + "ordinal": 72, + "ordinal_hex": "0x00000048", + "name": "NetDll_XNetQosRelease", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Networking", + "source_file": "src/xenia/kernel/xam/xam_net.cc" + }, + { + "module": "xam", + "ordinal": 73, + "ordinal_hex": "0x00000049", + "name": "NetDll_XNetGetTitleXnAddr", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Networking", + "source_file": "src/xenia/kernel/xam/xam_net.cc" + }, + { + "module": "xam", + "ordinal": 74, + "ordinal_hex": "0x0000004A", + "name": "NetDll_XNetGetDebugXnAddr", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Networking", + "source_file": "src/xenia/kernel/xam/xam_net.cc" + }, + { + "module": "xam", + "ordinal": 75, + "ordinal_hex": "0x0000004B", + "name": "NetDll_XNetGetEthernetLinkStatus", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Networking", + "source_file": "src/xenia/kernel/xam/xam_net.cc" + }, + { + "module": "xam", + "ordinal": 76, + "ordinal_hex": "0x0000004C", + "name": "NetDll_XNetGetBroadcastVersionStatus", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 77, + "ordinal_hex": "0x0000004D", + "name": "NetDll_XNetQosGetListenStats", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 78, + "ordinal_hex": "0x0000004E", + "name": "NetDll_XNetGetOpt", + "type": "function", + "status": "sketchy", + "tags": [ + "Sketchy" + ], + "category": "Networking", + "source_file": "src/xenia/kernel/xam/xam_net.cc" + }, + { + "module": "xam", + "ordinal": 79, + "ordinal_hex": "0x0000004F", + "name": "NetDll_XNetSetOpt", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 80, + "ordinal_hex": "0x00000050", + "name": "NetDll_XNetStartupEx", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Networking", + "source_file": "src/xenia/kernel/xam/xam_net.cc" + }, + { + "module": "xam", + "ordinal": 81, + "ordinal_hex": "0x00000051", + "name": "NetDll_XNetReplaceKey", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 82, + "ordinal_hex": "0x00000052", + "name": "NetDll_XNetGetXnAddrPlatform", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 83, + "ordinal_hex": "0x00000053", + "name": "NetDll_XNetGetSystemLinkPort", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 84, + "ordinal_hex": "0x00000054", + "name": "NetDll_XNetSetSystemLinkPort", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Networking", + "source_file": "src/xenia/kernel/xam/xam_net.cc" + }, + { + "module": "xam", + "ordinal": 85, + "ordinal_hex": "0x00000055", + "name": "NetDll_XNetDnsReverseLookup", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 86, + "ordinal_hex": "0x00000056", + "name": "NetDll_XNetDnsReverseRelease", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 101, + "ordinal_hex": "0x00000065", + "name": "NetDll_XnpLoadConfigParams", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 102, + "ordinal_hex": "0x00000066", + "name": "NetDll_XnpSaveConfigParams", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 103, + "ordinal_hex": "0x00000067", + "name": "NetDll_XnpConfigUPnP", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 104, + "ordinal_hex": "0x00000068", + "name": "NetDll_XnpConfig", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 105, + "ordinal_hex": "0x00000069", + "name": "NetDll_XnpGetConfigStatus", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 106, + "ordinal_hex": "0x0000006A", + "name": "NetDll_XnpLoadMachineAccount", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 107, + "ordinal_hex": "0x0000006B", + "name": "NetDll_XnpSaveMachineAccount", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 108, + "ordinal_hex": "0x0000006C", + "name": "NetDll_XnpCapture", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 109, + "ordinal_hex": "0x0000006D", + "name": "NetDll_XnpEthernetInterceptSetCallbacks", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 110, + "ordinal_hex": "0x0000006E", + "name": "NetDll_XnpEthernetInterceptXmit", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 111, + "ordinal_hex": "0x0000006F", + "name": "NetDll_XnpEthernetInterceptRecv", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 112, + "ordinal_hex": "0x00000070", + "name": "NetDll_XnpLogonGetStatus", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 113, + "ordinal_hex": "0x00000071", + "name": "NetDll_XnpLogonGetQFlags", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 114, + "ordinal_hex": "0x00000072", + "name": "NetDll_XnpLogonSetQFlags", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 115, + "ordinal_hex": "0x00000073", + "name": "NetDll_XnpLogonSetQEvent", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 116, + "ordinal_hex": "0x00000074", + "name": "NetDll_XnpLogonClearQEvent", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 117, + "ordinal_hex": "0x00000075", + "name": "NetDll_XnpLogonGetQVals", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 118, + "ordinal_hex": "0x00000076", + "name": "NetDll_XnpLogonSetQVals", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 119, + "ordinal_hex": "0x00000077", + "name": "NetDll_XnpLogonSetPState", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 120, + "ordinal_hex": "0x00000078", + "name": "NetDll_XnpGetVlanXboxName", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 121, + "ordinal_hex": "0x00000079", + "name": "NetDll_XnpSetVlanXboxName", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 122, + "ordinal_hex": "0x0000007A", + "name": "NetDll_XnpGetActiveSocketList", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 123, + "ordinal_hex": "0x0000007B", + "name": "NetDll_XnpNoteSystemTime", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 124, + "ordinal_hex": "0x0000007C", + "name": "NetDll_XnpRegisterKeyForCallerType", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 125, + "ordinal_hex": "0x0000007D", + "name": "NetDll_XnpUnregisterKeyForCallerType", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 126, + "ordinal_hex": "0x0000007E", + "name": "NetDll_XnpLogonGetChallenge", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 127, + "ordinal_hex": "0x0000007F", + "name": "NetDll_XnpLogonClearChallenge", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 128, + "ordinal_hex": "0x00000080", + "name": "NetDll_XnpLogonSetChallengeResponse", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 129, + "ordinal_hex": "0x00000081", + "name": "NetDll_XnpGetSecAssocList", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 130, + "ordinal_hex": "0x00000082", + "name": "NetDll_XnpGetKeyList", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 131, + "ordinal_hex": "0x00000083", + "name": "NetDll_XnpGetQosLookupList", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 132, + "ordinal_hex": "0x00000084", + "name": "NetDll_XnpPersistTitleState", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 133, + "ordinal_hex": "0x00000085", + "name": "NetDll_XnpReplaceKeyForCallerType", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 134, + "ordinal_hex": "0x00000086", + "name": "NetDll_XnpEthernetInterceptSetExtendedReceiveCallback", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 135, + "ordinal_hex": "0x00000087", + "name": "NetDll_XnpQosHistoryLoad", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 136, + "ordinal_hex": "0x00000088", + "name": "NetDll_XnpQosHistorySaveMeasurements", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 137, + "ordinal_hex": "0x00000089", + "name": "NetDll_XnpQosHistoryGetEntries", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 138, + "ordinal_hex": "0x0000008A", + "name": "NetDll_XnpQosHistoryGetAggregateMeasurement", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 139, + "ordinal_hex": "0x0000008B", + "name": "NetDll_XnpToolSetCallbacks", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 140, + "ordinal_hex": "0x0000008C", + "name": "NetDll_XnpToolIpProxyInject", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 141, + "ordinal_hex": "0x0000008D", + "name": "NetDll_XnpUpdateConfigParams", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 142, + "ordinal_hex": "0x0000008E", + "name": "NetDll_XnpEthernetInterceptXmitAsIp", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 143, + "ordinal_hex": "0x0000008F", + "name": "NetDll_XnpConfigUPnPPortAndExternalAddr", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 151, + "ordinal_hex": "0x00000097", + "name": "NetDll_XmlDownloadStart", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 152, + "ordinal_hex": "0x00000098", + "name": "NetDll_XmlDownloadContinue", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 153, + "ordinal_hex": "0x00000099", + "name": "NetDll_XmlDownloadStop", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 154, + "ordinal_hex": "0x0000009A", + "name": "NetDll_XmlDownloadGetParseTime", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 155, + "ordinal_hex": "0x0000009B", + "name": "NetDll_XmlDownloadGetReceivedDataSize", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 198, + "ordinal_hex": "0x000000C6", + "name": "XnpGetXwppMemoryLogSnapshot", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 199, + "ordinal_hex": "0x000000C7", + "name": "XnpGetXwppRuntimeFilter", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 201, + "ordinal_hex": "0x000000C9", + "name": "NetDll_XHttpStartup", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 202, + "ordinal_hex": "0x000000CA", + "name": "NetDll_XHttpShutdown", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 203, + "ordinal_hex": "0x000000CB", + "name": "NetDll_XHttpOpen", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 204, + "ordinal_hex": "0x000000CC", + "name": "NetDll_XHttpCloseHandle", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 205, + "ordinal_hex": "0x000000CD", + "name": "NetDll_XHttpConnect", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 206, + "ordinal_hex": "0x000000CE", + "name": "NetDll_XHttpSetStatusCallback", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 207, + "ordinal_hex": "0x000000CF", + "name": "NetDll_XHttpOpenRequest", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 208, + "ordinal_hex": "0x000000D0", + "name": "NetDll_XHttpOpenRequestUsingMemory", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 209, + "ordinal_hex": "0x000000D1", + "name": "NetDll_XHttpSendRequest", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 210, + "ordinal_hex": "0x000000D2", + "name": "NetDll_XHttpReceiveResponse", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 211, + "ordinal_hex": "0x000000D3", + "name": "NetDll_XHttpQueryHeaders", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 212, + "ordinal_hex": "0x000000D4", + "name": "NetDll_XHttpReadData", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 213, + "ordinal_hex": "0x000000D5", + "name": "NetDll_XHttpWriteData", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 214, + "ordinal_hex": "0x000000D6", + "name": "NetDll_XHttpQueryOption", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 215, + "ordinal_hex": "0x000000D7", + "name": "NetDll_XHttpSetOption", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 216, + "ordinal_hex": "0x000000D8", + "name": "NetDll_XHttpDoWork", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 217, + "ordinal_hex": "0x000000D9", + "name": "NetDll_XHttpSetCredentials", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 218, + "ordinal_hex": "0x000000DA", + "name": "NetDll_XHttpQueryAuthSchemes", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 219, + "ordinal_hex": "0x000000DB", + "name": "NetDll_XHttpCrackUrlW", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 220, + "ordinal_hex": "0x000000DC", + "name": "NetDll_XHttpCrackUrl", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 221, + "ordinal_hex": "0x000000DD", + "name": "NetDll_XHttpCreateUrl", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 222, + "ordinal_hex": "0x000000DE", + "name": "NetDll_XHttpCreateUrlW", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 223, + "ordinal_hex": "0x000000DF", + "name": "NetDll_XHttpResetPerfCounters", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 224, + "ordinal_hex": "0x000000E0", + "name": "NetDll_XHttpGetPerfCounters", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 251, + "ordinal_hex": "0x000000FB", + "name": "NetDll_UpnpStartup", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 252, + "ordinal_hex": "0x000000FC", + "name": "NetDll_UpnpCleanup", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 253, + "ordinal_hex": "0x000000FD", + "name": "NetDll_UpnpSearchCreate", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 254, + "ordinal_hex": "0x000000FE", + "name": "NetDll_UpnpSearchGetDevices", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 255, + "ordinal_hex": "0x000000FF", + "name": "NetDll_UpnpDescribeCreate", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 256, + "ordinal_hex": "0x00000100", + "name": "NetDll_UpnpDescribeGetResults", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 257, + "ordinal_hex": "0x00000101", + "name": "NetDll_UpnpActionCalculateWorkBufferSize", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 258, + "ordinal_hex": "0x00000102", + "name": "NetDll_UpnpActionCreate", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 259, + "ordinal_hex": "0x00000103", + "name": "NetDll_UpnpActionGetResults", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 260, + "ordinal_hex": "0x00000104", + "name": "NetDll_UpnpEventCreate", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 261, + "ordinal_hex": "0x00000105", + "name": "NetDll_UpnpEventGetCurrentState", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 262, + "ordinal_hex": "0x00000106", + "name": "NetDll_UpnpEventUnsubscribe", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 263, + "ordinal_hex": "0x00000107", + "name": "NetDll_UpnpDoWork", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 264, + "ordinal_hex": "0x00000108", + "name": "NetDll_UpnpCloseHandle", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 301, + "ordinal_hex": "0x0000012D", + "name": "XNetLogonGetLoggedOnUsers", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 302, + "ordinal_hex": "0x0000012E", + "name": "XNetLogonGetNatType", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 303, + "ordinal_hex": "0x0000012F", + "name": "XNetLogonTaskStart", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 304, + "ordinal_hex": "0x00000130", + "name": "XNetLogonTaskClose", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 305, + "ordinal_hex": "0x00000131", + "name": "XNetLogonTaskContinue", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 306, + "ordinal_hex": "0x00000132", + "name": "XNetLogonGetServiceInfo", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 307, + "ordinal_hex": "0x00000133", + "name": "XNetLogonGetUserPrivileges", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 308, + "ordinal_hex": "0x00000134", + "name": "XNetLogonSetConsoleCertificate", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 309, + "ordinal_hex": "0x00000135", + "name": "XNetLogonGetMachineID", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 310, + "ordinal_hex": "0x00000136", + "name": "XNetLogonGetTitleID", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 311, + "ordinal_hex": "0x00000137", + "name": "XNetLogonGetTitleVersion", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 312, + "ordinal_hex": "0x00000138", + "name": "XNetLogonGetServiceNetworkID", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 313, + "ordinal_hex": "0x00000139", + "name": "XNetLogonGetDnsString", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 314, + "ordinal_hex": "0x0000013A", + "name": "XNetLogonSetTitleID", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 315, + "ordinal_hex": "0x0000013B", + "name": "XNetLogonGetExtendedStatus", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 316, + "ordinal_hex": "0x0000013C", + "name": "XNetLogonClearTicketCaches", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 317, + "ordinal_hex": "0x0000013D", + "name": "XNetLogonInitOverrideInfo", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 318, + "ordinal_hex": "0x0000013E", + "name": "XNetLogonGetLastUPnPStatus", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 319, + "ordinal_hex": "0x0000013F", + "name": "XNetLogonGetFlowToken", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 320, + "ordinal_hex": "0x00000140", + "name": "XNetLogonGetTicketOpt", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 321, + "ordinal_hex": "0x00000141", + "name": "XNetLogonSetTicketOpt", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 322, + "ordinal_hex": "0x00000142", + "name": "XNetLogonGetState", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 400, + "ordinal_hex": "0x00000190", + "name": "XamInputGetCapabilities", + "type": "function", + "status": "sketchy", + "tags": [ + "Sketchy" + ], + "category": "Input", + "source_file": "src/xenia/kernel/xam/xam_input.cc" + }, + { + "module": "xam", + "ordinal": 401, + "ordinal_hex": "0x00000191", + "name": "XamInputGetState", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "HighFrequency" + ], + "category": "Input", + "source_file": "src/xenia/kernel/xam/xam_input.cc" + }, + { + "module": "xam", + "ordinal": 402, + "ordinal_hex": "0x00000192", + "name": "XamInputSetState", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Input", + "source_file": "src/xenia/kernel/xam/xam_input.cc" + }, + { + "module": "xam", + "ordinal": 403, + "ordinal_hex": "0x00000193", + "name": "XamInputGetKeystroke", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Input", + "source_file": "src/xenia/kernel/xam/xam_input.cc" + }, + { + "module": "xam", + "ordinal": 404, + "ordinal_hex": "0x00000194", + "name": "XamInputEnableAutobind", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 405, + "ordinal_hex": "0x00000195", + "name": "XamInputRawState", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 406, + "ordinal_hex": "0x00000196", + "name": "XamEnableSystemAppInput", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 407, + "ordinal_hex": "0x00000197", + "name": "XamInputGetDeviceStats", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 408, + "ordinal_hex": "0x00000198", + "name": "XamInputGetKeystrokeEx", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Input", + "source_file": "src/xenia/kernel/xam/xam_input.cc" + }, + { + "module": "xam", + "ordinal": 409, + "ordinal_hex": "0x00000199", + "name": "XamInputGetKeystrokeHud", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 410, + "ordinal_hex": "0x0000019A", + "name": "XamInputSetLayoutKeyboard", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 411, + "ordinal_hex": "0x0000019B", + "name": "XamInputToggleKeyLocks", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 412, + "ordinal_hex": "0x0000019C", + "name": "XamInputResetLayoutKeyboard", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 413, + "ordinal_hex": "0x0000019D", + "name": "XamInputGetKeystrokeHudEx", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 414, + "ordinal_hex": "0x0000019E", + "name": "XamInputSetKeyboardTranslationHud", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 415, + "ordinal_hex": "0x0000019F", + "name": "XamSetInactivityTime", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 416, + "ordinal_hex": "0x000001A0", + "name": "XamEnableInactivityProcessing", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Input", + "source_file": "src/xenia/kernel/xam/xam_input.cc" + }, + { + "module": "xam", + "ordinal": 417, + "ordinal_hex": "0x000001A1", + "name": "XamResetInactivity", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Input", + "source_file": "src/xenia/kernel/xam/xam_input.cc" + }, + { + "module": "xam", + "ordinal": 418, + "ordinal_hex": "0x000001A2", + "name": "XamSetInactivityTimeFromConfig", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 419, + "ordinal_hex": "0x000001A3", + "name": "XamLoaderGetMediaInfo", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_content.cc" + }, + { + "module": "xam", + "ordinal": 420, + "ordinal_hex": "0x000001A4", + "name": "XamLoaderLaunchTitle", + "type": "function", + "status": "sketchy", + "tags": [ + "Sketchy" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_info.cc" + }, + { + "module": "xam", + "ordinal": 421, + "ordinal_hex": "0x000001A5", + "name": "XamLoaderLaunchTitleEx", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 422, + "ordinal_hex": "0x000001A6", + "name": "XamLoaderSetLaunchData", + "type": "function", + "status": "sketchy", + "tags": [ + "Sketchy" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_info.cc" + }, + { + "module": "xam", + "ordinal": 423, + "ordinal_hex": "0x000001A7", + "name": "XamLoaderGetLaunchDataSize", + "type": "function", + "status": "sketchy", + "tags": [ + "Sketchy" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_info.cc" + }, + { + "module": "xam", + "ordinal": 424, + "ordinal_hex": "0x000001A8", + "name": "XamLoaderGetLaunchData", + "type": "function", + "status": "sketchy", + "tags": [ + "Sketchy" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_info.cc" + }, + { + "module": "xam", + "ordinal": 425, + "ordinal_hex": "0x000001A9", + "name": "XamLoaderTerminateTitle", + "type": "function", + "status": "sketchy", + "tags": [ + "Sketchy" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_info.cc" + }, + { + "module": "xam", + "ordinal": 426, + "ordinal_hex": "0x000001AA", + "name": "XamLoaderGetDvdTrayState", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_content.cc" + }, + { + "module": "xam", + "ordinal": 427, + "ordinal_hex": "0x000001AB", + "name": "XamLoaderGetGameInfo", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 428, + "ordinal_hex": "0x000001AC", + "name": "XamLoaderLaunchTitleOnDvd", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 429, + "ordinal_hex": "0x000001AD", + "name": "XamLoaderSetSpindleSpeed", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 430, + "ordinal_hex": "0x000001AE", + "name": "XamTaskCreateQueue", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 431, + "ordinal_hex": "0x000001AF", + "name": "XamTaskSchedule", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "Sketchy" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_task.cc" + }, + { + "module": "xam", + "ordinal": 432, + "ordinal_hex": "0x000001B0", + "name": "XamTaskReschedule", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 433, + "ordinal_hex": "0x000001B1", + "name": "XamTaskCloseHandle", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_task.cc" + }, + { + "module": "xam", + "ordinal": 434, + "ordinal_hex": "0x000001B2", + "name": "XamTaskCancel", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 435, + "ordinal_hex": "0x000001B3", + "name": "XamTaskShouldExit", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_task.cc" + }, + { + "module": "xam", + "ordinal": 436, + "ordinal_hex": "0x000001B4", + "name": "XamTaskWaitOnCompletion", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 437, + "ordinal_hex": "0x000001B5", + "name": "XamTaskModify", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 438, + "ordinal_hex": "0x000001B6", + "name": "XamTaskGetCurrentTask", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 439, + "ordinal_hex": "0x000001B7", + "name": "XamTaskGetAttributes", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 440, + "ordinal_hex": "0x000001B8", + "name": "XamExecutingOnBehalfOfTitle", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 441, + "ordinal_hex": "0x000001B9", + "name": "XamInputSendStayAliveRequest", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 442, + "ordinal_hex": "0x000001BA", + "name": "XamInputGetUserVibrationLevel", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 443, + "ordinal_hex": "0x000001BB", + "name": "XamIsSystemTitleId", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_info.cc" + }, + { + "module": "xam", + "ordinal": 444, + "ordinal_hex": "0x000001BC", + "name": "XamLoaderIsTitleTerminatePending", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 445, + "ordinal_hex": "0x000001BD", + "name": "XamInputSetTextMessengerIndicator", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 446, + "ordinal_hex": "0x000001BE", + "name": "XamLoaderGetPriorTitleId", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 447, + "ordinal_hex": "0x000001BF", + "name": "XamIsXbox1TitleId", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_info.cc" + }, + { + "module": "xam", + "ordinal": 448, + "ordinal_hex": "0x000001C0", + "name": "XamInputSetKeyLocks", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 449, + "ordinal_hex": "0x000001C1", + "name": "XamInputGetKeyLocks", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 450, + "ordinal_hex": "0x000001C2", + "name": "XamTaskGetStatus", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 451, + "ordinal_hex": "0x000001C3", + "name": "XamGetRootObj", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 452, + "ordinal_hex": "0x000001C4", + "name": "XamDevAuthSetFault", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 453, + "ordinal_hex": "0x000001C5", + "name": "XamGetDefaultSystemImage", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 454, + "ordinal_hex": "0x000001C6", + "name": "XamGetWCNConfigFile", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 455, + "ordinal_hex": "0x000001C7", + "name": "XamSetPowerMode", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 456, + "ordinal_hex": "0x000001C8", + "name": "XamExecuteChallenge", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 457, + "ordinal_hex": "0x000001C9", + "name": "XamGetDefaultImage", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 458, + "ordinal_hex": "0x000001CA", + "name": "XamMuteSound", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 459, + "ordinal_hex": "0x000001CB", + "name": "XamGetOnlineSchema", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_info.cc" + }, + { + "module": "xam", + "ordinal": 460, + "ordinal_hex": "0x000001CC", + "name": "XamSetDashContext", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_ui.cc" + }, + { + "module": "xam", + "ordinal": 461, + "ordinal_hex": "0x000001CD", + "name": "XamGetDashContext", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_ui.cc" + }, + { + "module": "xam", + "ordinal": 462, + "ordinal_hex": "0x000001CE", + "name": "XamIsCurrentTitleDash", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_info.cc" + }, + { + "module": "xam", + "ordinal": 463, + "ordinal_hex": "0x000001CF", + "name": "XamGetCurrentTitleId", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_info.cc" + }, + { + "module": "xam", + "ordinal": 464, + "ordinal_hex": "0x000001D0", + "name": "XamSetCurrentTitleDash", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 465, + "ordinal_hex": "0x000001D1", + "name": "XamAllocHeapFreeSpace", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 466, + "ordinal_hex": "0x000001D2", + "name": "XamSetDashContextEx", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 467, + "ordinal_hex": "0x000001D3", + "name": "XamGetDashContextEx", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 468, + "ordinal_hex": "0x000001D4", + "name": "XamSetHudContext", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 469, + "ordinal_hex": "0x000001D5", + "name": "XamGetHudContext", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 470, + "ordinal_hex": "0x000001D6", + "name": "XCustomGetBannerImage", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 471, + "ordinal_hex": "0x000001D7", + "name": "Refresh", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_info.cc" + }, + { + "module": "xam", + "ordinal": 472, + "ordinal_hex": "0x000001D8", + "name": "XCustomSetAction", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 473, + "ordinal_hex": "0x000001D9", + "name": "XCustomGetLastActionPress", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 474, + "ordinal_hex": "0x000001DA", + "name": "XCustomSetDynamicActions", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 475, + "ordinal_hex": "0x000001DB", + "name": "XCustomBroadcastActionEvent", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 476, + "ordinal_hex": "0x000001DC", + "name": "XCustomGetLastActionPressEx", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 477, + "ordinal_hex": "0x000001DD", + "name": "XCustomRegisterDynamicActions", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_info.cc" + }, + { + "module": "xam", + "ordinal": 478, + "ordinal_hex": "0x000001DE", + "name": "XCustomUnregisterDynamicActions", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 479, + "ordinal_hex": "0x000001DF", + "name": "XCustomGetCurrentGamercard", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 480, + "ordinal_hex": "0x000001E0", + "name": "XamDbgPrint", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 481, + "ordinal_hex": "0x000001E1", + "name": "XamDbgSetOutputLevel", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 482, + "ordinal_hex": "0x000001E2", + "name": "XamDbgSetBreakLevel", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 483, + "ordinal_hex": "0x000001E3", + "name": "XamLoaderGetMediaInfoEx", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_content.cc" + }, + { + "module": "xam", + "ordinal": 484, + "ordinal_hex": "0x000001E4", + "name": "XamLoaderSetGameInfo", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 485, + "ordinal_hex": "0x000001E5", + "name": "XamFormatMessage", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 486, + "ordinal_hex": "0x000001E6", + "name": "XamUniSortCmpString", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 487, + "ordinal_hex": "0x000001E7", + "name": "XamFormatTimeString", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_info.cc" + }, + { + "module": "xam", + "ordinal": 488, + "ordinal_hex": "0x000001E8", + "name": "XamFormatDateString", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_info.cc" + }, + { + "module": "xam", + "ordinal": 489, + "ordinal_hex": "0x000001E9", + "name": "XamGetLocaleDateFormat", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Locale", + "source_file": "src/xenia/kernel/xam/xam_locale.cc" + }, + { + "module": "xam", + "ordinal": 490, + "ordinal_hex": "0x000001EA", + "name": "XamAlloc", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Memory", + "source_file": "src/xenia/kernel/xam/xam_info.cc" + }, + { + "module": "xam", + "ordinal": 491, + "ordinal_hex": "0x000001EB", + "name": "XamAllocEx", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Memory", + "source_file": "src/xenia/kernel/xam/xam_info.cc" + }, + { + "module": "xam", + "ordinal": 492, + "ordinal_hex": "0x000001EC", + "name": "XamFree", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Memory", + "source_file": "src/xenia/kernel/xam/xam_info.cc" + }, + { + "module": "xam", + "ordinal": 493, + "ordinal_hex": "0x000001ED", + "name": "XamAllocSize", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 494, + "ordinal_hex": "0x000001EE", + "name": "XamAllocMountIPTVHeap", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 495, + "ordinal_hex": "0x000001EF", + "name": "XamAllocUnmountIPTVHeap", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 496, + "ordinal_hex": "0x000001F0", + "name": "XamAllocFreeIPTVHeap", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 497, + "ordinal_hex": "0x000001F1", + "name": "XamDeviceRemap", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 498, + "ordinal_hex": "0x000001F2", + "name": "XamLoaderGetClearCache", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 499, + "ordinal_hex": "0x000001F3", + "name": "XamLoaderSetClearCache", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 500, + "ordinal_hex": "0x000001F4", + "name": "XMsgInProcessCall", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_msg.cc" + }, + { + "module": "xam", + "ordinal": 501, + "ordinal_hex": "0x000001F5", + "name": "XMsgCompleteIORequest", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "Sketchy" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_msg.cc" + }, + { + "module": "xam", + "ordinal": 502, + "ordinal_hex": "0x000001F6", + "name": "XMsgSystemProcessCall", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_msg.cc" + }, + { + "module": "xam", + "ordinal": 503, + "ordinal_hex": "0x000001F7", + "name": "XMsgStartIORequest", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_msg.cc" + }, + { + "module": "xam", + "ordinal": 504, + "ordinal_hex": "0x000001F8", + "name": "XMsgCancelIORequest", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_msg.cc" + }, + { + "module": "xam", + "ordinal": 505, + "ordinal_hex": "0x000001F9", + "name": "XMsgAcquireAsyncMessageFromOverlapped", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 506, + "ordinal_hex": "0x000001FA", + "name": "XMsgReleaseAsyncMessageToOverlapped", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 507, + "ordinal_hex": "0x000001FB", + "name": "XamGetOverlappedResult", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "Sketchy" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_msg.cc" + }, + { + "module": "xam", + "ordinal": 508, + "ordinal_hex": "0x000001FC", + "name": "XMsgStartIORequestEx", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_msg.cc" + }, + { + "module": "xam", + "ordinal": 509, + "ordinal_hex": "0x000001FD", + "name": "XamAppAllocateInterappWorkspace", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 510, + "ordinal_hex": "0x000001FE", + "name": "XamAppGetInterappWorkspace", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 511, + "ordinal_hex": "0x000001FF", + "name": "XamAppFreeInterappWorkspace", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 512, + "ordinal_hex": "0x00000200", + "name": "XamFeatureEnabled", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_info.cc" + }, + { + "module": "xam", + "ordinal": 513, + "ordinal_hex": "0x00000201", + "name": "XamFeatureEnforceImageBudget", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 514, + "ordinal_hex": "0x00000202", + "name": "XamFeatureSetMask", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 515, + "ordinal_hex": "0x00000203", + "name": "XamFeatureEnableDisable", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 516, + "ordinal_hex": "0x00000204", + "name": "XuiControlSetItemAssociation", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 517, + "ordinal_hex": "0x00000205", + "name": "XamGetTitleGlobalStorageValue", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 518, + "ordinal_hex": "0x00000206", + "name": "XamSetTitleGlobalStorageValue", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 519, + "ordinal_hex": "0x00000207", + "name": "XamUserValidateAvatarManifest", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 520, + "ordinal_hex": "0x00000208", + "name": "XamUserGetDeviceContext", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Input", + "source_file": "src/xenia/kernel/xam/xam_input.cc" + }, + { + "module": "xam", + "ordinal": 521, + "ordinal_hex": "0x00000209", + "name": "XamUserLookupDevice", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 522, + "ordinal_hex": "0x0000020A", + "name": "XamUserGetXUID", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "UserProfiles", + "source_file": "src/xenia/kernel/xam/xam_user.cc" + }, + { + "module": "xam", + "ordinal": 523, + "ordinal_hex": "0x0000020B", + "name": "XamUserLogon", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "UserProfiles", + "source_file": "src/xenia/kernel/xam/xam_user.cc" + }, + { + "module": "xam", + "ordinal": 524, + "ordinal_hex": "0x0000020C", + "name": "XamUserGetGamerTag", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "UserProfiles", + "source_file": "src/xenia/kernel/xam/xam_user.cc" + }, + { + "module": "xam", + "ordinal": 525, + "ordinal_hex": "0x0000020D", + "name": "XamUserGetUserIndexMask", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 526, + "ordinal_hex": "0x0000020E", + "name": "XamUserGetName", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "UserProfiles", + "source_file": "src/xenia/kernel/xam/xam_user.cc" + }, + { + "module": "xam", + "ordinal": 527, + "ordinal_hex": "0x0000020F", + "name": "XamLookupCommonStringByIndex", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 528, + "ordinal_hex": "0x00000210", + "name": "XamUserGetSigninState", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "HighFrequency" + ], + "category": "UserProfiles", + "source_file": "src/xenia/kernel/xam/xam_user.cc" + }, + { + "module": "xam", + "ordinal": 529, + "ordinal_hex": "0x00000211", + "name": "XamUserGetIndexFromXUID", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "UserProfiles", + "source_file": "src/xenia/kernel/xam/xam_user.cc" + }, + { + "module": "xam", + "ordinal": 530, + "ordinal_hex": "0x00000212", + "name": "XamUserCheckPrivilege", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "UserProfiles", + "source_file": "src/xenia/kernel/xam/xam_user.cc" + }, + { + "module": "xam", + "ordinal": 531, + "ordinal_hex": "0x00000213", + "name": "XamUserAreUsersFriends", + "type": "function", + "status": "sketchy", + "tags": [ + "Sketchy" + ], + "category": "UserProfiles", + "source_file": "src/xenia/kernel/xam/xam_user.cc" + }, + { + "module": "xam", + "ordinal": 532, + "ordinal_hex": "0x00000214", + "name": "XamSetUserPresetPresenceState", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 533, + "ordinal_hex": "0x00000215", + "name": "XamGetUserPresetPresenceState", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 534, + "ordinal_hex": "0x00000216", + "name": "XamUserGetUserFlagsFromXUID", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "UserProfiles", + "source_file": "src/xenia/kernel/xam/xam_user.cc" + }, + { + "module": "xam", + "ordinal": 535, + "ordinal_hex": "0x00000217", + "name": "XamUserGetMembershipTierFromXUID", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "UserProfiles", + "source_file": "src/xenia/kernel/xam/xam_user.cc" + }, + { + "module": "xam", + "ordinal": 536, + "ordinal_hex": "0x00000218", + "name": "XamUserGetOnlineCountryFromXUID", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "UserProfiles", + "source_file": "src/xenia/kernel/xam/xam_user.cc" + }, + { + "module": "xam", + "ordinal": 537, + "ordinal_hex": "0x00000219", + "name": "XamUserReadProfileSettings", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "UserProfiles", + "source_file": "src/xenia/kernel/xam/xam_user.cc" + }, + { + "module": "xam", + "ordinal": 538, + "ordinal_hex": "0x0000021A", + "name": "XamUserWriteProfileSettings", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "UserProfiles", + "source_file": "src/xenia/kernel/xam/xam_user.cc" + }, + { + "module": "xam", + "ordinal": 539, + "ordinal_hex": "0x0000021B", + "name": "XamUserGetMembershipTier", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "UserProfiles", + "source_file": "src/xenia/kernel/xam/xam_user.cc" + }, + { + "module": "xam", + "ordinal": 540, + "ordinal_hex": "0x0000021C", + "name": "XamUserGetUserFlags", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "UserProfiles", + "source_file": "src/xenia/kernel/xam/xam_user.cc" + }, + { + "module": "xam", + "ordinal": 541, + "ordinal_hex": "0x0000021D", + "name": "XamUserGetRequestedUserIndexMask", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 542, + "ordinal_hex": "0x0000021E", + "name": "XamUserIsGuest", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 543, + "ordinal_hex": "0x0000021F", + "name": "XamUserProfileSync", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 544, + "ordinal_hex": "0x00000220", + "name": "XamUserFlushLogonQueue", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 545, + "ordinal_hex": "0x00000221", + "name": "XamUserIsOnlineEnabled", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "UserProfiles", + "source_file": "src/xenia/kernel/xam/xam_user.cc" + }, + { + "module": "xam", + "ordinal": 546, + "ordinal_hex": "0x00000222", + "name": "XamUserGetCachedUserFlags", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "UserProfiles", + "source_file": "src/xenia/kernel/xam/xam_user.cc" + }, + { + "module": "xam", + "ordinal": 547, + "ordinal_hex": "0x00000223", + "name": "XamAreMixedAccountsSignedIn", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 548, + "ordinal_hex": "0x00000224", + "name": "XamUserLogonEx", + "type": "function", + "status": "sketchy", + "tags": [ + "Sketchy" + ], + "category": "UserProfiles", + "source_file": "src/xenia/kernel/xam/xam_user.cc" + }, + { + "module": "xam", + "ordinal": 549, + "ordinal_hex": "0x00000225", + "name": "XamSetUserShowMessengerFriends", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 550, + "ordinal_hex": "0x00000226", + "name": "XamGetUserShowMessengerFriends", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 551, + "ordinal_hex": "0x00000227", + "name": "XamUserGetSigninInfo", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "UserProfiles", + "source_file": "src/xenia/kernel/xam/xam_user.cc" + }, + { + "module": "xam", + "ordinal": 552, + "ordinal_hex": "0x00000228", + "name": "XamUserIsPartial", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 553, + "ordinal_hex": "0x00000229", + "name": "XamUserGetOnlineLanguageFromXUID", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "UserProfiles", + "source_file": "src/xenia/kernel/xam/xam_user.cc" + }, + { + "module": "xam", + "ordinal": 554, + "ordinal_hex": "0x0000022A", + "name": "XamUserReadProfileSettingsEx", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "UserProfiles", + "source_file": "src/xenia/kernel/xam/xam_user.cc" + }, + { + "module": "xam", + "ordinal": 555, + "ordinal_hex": "0x0000022B", + "name": "XamSystemUpdaterLogon", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 556, + "ordinal_hex": "0x0000022C", + "name": "XamUserGetUsersMissingAvatars", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 557, + "ordinal_hex": "0x0000022D", + "name": "XamIsChildAccountSignedIn", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_info.cc" + }, + { + "module": "xam", + "ordinal": 558, + "ordinal_hex": "0x0000022E", + "name": "XamUserPrefetchProfileSettings", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 559, + "ordinal_hex": "0x0000022F", + "name": "XamUserInvalidateProfileSetting", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 560, + "ordinal_hex": "0x00000230", + "name": "XamProfileCreate", + "type": "function", + "status": "sketchy", + "tags": [ + "Sketchy" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_profile.cc" + }, + { + "module": "xam", + "ordinal": 561, + "ordinal_hex": "0x00000231", + "name": "XamProfileCreateEnumerator", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_enum.cc" + }, + { + "module": "xam", + "ordinal": 562, + "ordinal_hex": "0x00000232", + "name": "XamProfileEnumerate", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_enum.cc" + }, + { + "module": "xam", + "ordinal": 563, + "ordinal_hex": "0x00000233", + "name": "XamProfileDelete", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 564, + "ordinal_hex": "0x00000234", + "name": "XamProfileGetCreationStatus", + "type": "function", + "status": "sketchy", + "tags": [ + "Sketchy" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_profile.cc" + }, + { + "module": "xam", + "ordinal": 565, + "ordinal_hex": "0x00000235", + "name": "XamProfileFindAccount", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "UserProfiles", + "source_file": "src/xenia/kernel/xam/xam_profile.cc" + }, + { + "module": "xam", + "ordinal": 566, + "ordinal_hex": "0x00000236", + "name": "XamProfileRenameAccount", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 567, + "ordinal_hex": "0x00000237", + "name": "XamProfileOpen", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_profile.cc" + }, + { + "module": "xam", + "ordinal": 568, + "ordinal_hex": "0x00000238", + "name": "XamProfileClose", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_profile.cc" + }, + { + "module": "xam", + "ordinal": 569, + "ordinal_hex": "0x00000239", + "name": "XamProfileSaveAccountInfo", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 570, + "ordinal_hex": "0x0000023A", + "name": "XamProfileLoadAccountInfo", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 571, + "ordinal_hex": "0x0000023B", + "name": "XamProfileRecoverTitle", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 572, + "ordinal_hex": "0x0000023C", + "name": "XamProfileSaveWindowsLiveCredentials", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 573, + "ordinal_hex": "0x0000023D", + "name": "XamProfileLoadWindowsLiveCredentials", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 574, + "ordinal_hex": "0x0000023E", + "name": "XamProfileIsSaveWindowsLiveCredsEnabled", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 575, + "ordinal_hex": "0x0000023F", + "name": "XamProfileSetSaveWindowsLiveCredsEnabled", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 576, + "ordinal_hex": "0x00000240", + "name": "XamSetProfileReadTestHook", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 577, + "ordinal_hex": "0x00000241", + "name": "XamProfileGetLastSync", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 578, + "ordinal_hex": "0x00000242", + "name": "XamAccountRecoveryRecoverTitle", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 579, + "ordinal_hex": "0x00000243", + "name": "XamProfileControlPec", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 580, + "ordinal_hex": "0x00000244", + "name": "XamAppLoad", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 581, + "ordinal_hex": "0x00000245", + "name": "XamAppUnloadSelf", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 582, + "ordinal_hex": "0x00000246", + "name": "XamAppUnloadStack", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 583, + "ordinal_hex": "0x00000247", + "name": "XamSendMessageToLoadedApps", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 584, + "ordinal_hex": "0x00000248", + "name": "XamAppRequestLoad", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 585, + "ordinal_hex": "0x00000249", + "name": "XamAppUnrequestLoad", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 586, + "ordinal_hex": "0x0000024A", + "name": "XamNavigate", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 587, + "ordinal_hex": "0x0000024B", + "name": "XamRegisterSysApp", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 588, + "ordinal_hex": "0x0000024C", + "name": "XamUnregisterSysApp", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 589, + "ordinal_hex": "0x0000024D", + "name": "XamAppReinitialize", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 590, + "ordinal_hex": "0x0000024E", + "name": "XamCreateEnumeratorHandle", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_enum.cc" + }, + { + "module": "xam", + "ordinal": 591, + "ordinal_hex": "0x0000024F", + "name": "XamGetPrivateEnumStructureFromHandle", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_enum.cc" + }, + { + "module": "xam", + "ordinal": 592, + "ordinal_hex": "0x00000250", + "name": "XamEnumerate", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_enum.cc" + }, + { + "module": "xam", + "ordinal": 593, + "ordinal_hex": "0x00000251", + "name": "XamLoadSysApp", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 594, + "ordinal_hex": "0x00000252", + "name": "XamUnloadSysApp", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 595, + "ordinal_hex": "0x00000253", + "name": "XamReloadSysApp", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 596, + "ordinal_hex": "0x00000254", + "name": "XamAppLoadPass2SysApps", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 597, + "ordinal_hex": "0x00000255", + "name": "XamProfileGetLiveLegalLocale", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 598, + "ordinal_hex": "0x00000256", + "name": "XamUserIsParentalControlled", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "UserProfiles", + "source_file": "src/xenia/kernel/xam/xam_user.cc" + }, + { + "module": "xam", + "ordinal": 599, + "ordinal_hex": "0x00000257", + "name": "XamContentLaunchImageFromFileInternal", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Content", + "source_file": "src/xenia/kernel/xam/xam_content.cc" + }, + { + "module": "xam", + "ordinal": 600, + "ordinal_hex": "0x00000258", + "name": "XamContentCreate", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Content", + "source_file": "src/xenia/kernel/xam/xam_content.cc" + }, + { + "module": "xam", + "ordinal": 601, + "ordinal_hex": "0x00000259", + "name": "XamContentCreateEx", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Content", + "source_file": "src/xenia/kernel/xam/xam_content.cc" + }, + { + "module": "xam", + "ordinal": 602, + "ordinal_hex": "0x0000025A", + "name": "XamContentClose", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Content", + "source_file": "src/xenia/kernel/xam/xam_content.cc" + }, + { + "module": "xam", + "ordinal": 603, + "ordinal_hex": "0x0000025B", + "name": "XamContentDelete", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Content", + "source_file": "src/xenia/kernel/xam/xam_content.cc" + }, + { + "module": "xam", + "ordinal": 604, + "ordinal_hex": "0x0000025C", + "name": "XamContentCreateEnumerator", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Content", + "source_file": "src/xenia/kernel/xam/xam_content.cc" + }, + { + "module": "xam", + "ordinal": 605, + "ordinal_hex": "0x0000025D", + "name": "XamContentCreateDeviceEnumerator", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_content_device.cc" + }, + { + "module": "xam", + "ordinal": 606, + "ordinal_hex": "0x0000025E", + "name": "XamContentGetDeviceData", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Content", + "source_file": "src/xenia/kernel/xam/xam_content_device.cc" + }, + { + "module": "xam", + "ordinal": 607, + "ordinal_hex": "0x0000025F", + "name": "XamContentGetDeviceName", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Content", + "source_file": "src/xenia/kernel/xam/xam_content_device.cc" + }, + { + "module": "xam", + "ordinal": 608, + "ordinal_hex": "0x00000260", + "name": "XamContentSetThumbnail", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Content", + "source_file": "src/xenia/kernel/xam/xam_content.cc" + }, + { + "module": "xam", + "ordinal": 609, + "ordinal_hex": "0x00000261", + "name": "XamContentGetThumbnail", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Content", + "source_file": "src/xenia/kernel/xam/xam_content.cc" + }, + { + "module": "xam", + "ordinal": 610, + "ordinal_hex": "0x00000262", + "name": "XamContentGetCreator", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Content", + "source_file": "src/xenia/kernel/xam/xam_content.cc" + }, + { + "module": "xam", + "ordinal": 611, + "ordinal_hex": "0x00000263", + "name": "XamContentLaunchImage", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 612, + "ordinal_hex": "0x00000264", + "name": "XamContentGetAttributes", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 613, + "ordinal_hex": "0x00000265", + "name": "XamContentGetDeviceState", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Content", + "source_file": "src/xenia/kernel/xam/xam_content_device.cc" + }, + { + "module": "xam", + "ordinal": 614, + "ordinal_hex": "0x00000266", + "name": "XamContentGetLicenseMask", + "type": "function", + "status": "stub", + "tags": [ + "Stub", + "HighFrequency" + ], + "category": "Content", + "source_file": "src/xenia/kernel/xam/xam_content.cc" + }, + { + "module": "xam", + "ordinal": 615, + "ordinal_hex": "0x00000267", + "name": "XamContentFlush", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Content", + "source_file": "src/xenia/kernel/xam/xam_content.cc" + }, + { + "module": "xam", + "ordinal": 616, + "ordinal_hex": "0x00000268", + "name": "XamContentResolve", + "type": "function", + "status": "sketchy", + "tags": [ + "Sketchy" + ], + "category": "Content", + "source_file": "src/xenia/kernel/xam/xam_content.cc" + }, + { + "module": "xam", + "ordinal": 617, + "ordinal_hex": "0x00000269", + "name": "XamContentOpenFile", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Content", + "source_file": "src/xenia/kernel/xam/xam_content.cc" + }, + { + "module": "xam", + "ordinal": 618, + "ordinal_hex": "0x0000026A", + "name": "XamContentInstall", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 619, + "ordinal_hex": "0x0000026B", + "name": "XamContentLockUnlockPackageHeaders", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 620, + "ordinal_hex": "0x0000026C", + "name": "XamContentCopyInternal", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 621, + "ordinal_hex": "0x0000026D", + "name": "XamContentMoveInternal", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 622, + "ordinal_hex": "0x0000026E", + "name": "XamContentGetMetaDataInternal", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 623, + "ordinal_hex": "0x0000026F", + "name": "XamContentCreateEnumeratorInternal", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 624, + "ordinal_hex": "0x00000270", + "name": "XamContentDeleteInternal", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Content", + "source_file": "src/xenia/kernel/xam/xam_content.cc" + }, + { + "module": "xam", + "ordinal": 625, + "ordinal_hex": "0x00000271", + "name": "XamContentCreateInternal", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Content", + "source_file": "src/xenia/kernel/xam/xam_content.cc" + }, + { + "module": "xam", + "ordinal": 626, + "ordinal_hex": "0x00000272", + "name": "XamContentSetThumbnailInternal", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 627, + "ordinal_hex": "0x00000273", + "name": "XamContentLaunchImageInternal", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Content", + "source_file": "src/xenia/kernel/xam/xam_content.cc" + }, + { + "module": "xam", + "ordinal": 628, + "ordinal_hex": "0x00000274", + "name": "XamContentWritePackageHeader", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 629, + "ordinal_hex": "0x00000275", + "name": "XamContentDismountAndClosePackage", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 630, + "ordinal_hex": "0x00000276", + "name": "XamContentResolveInternal", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 631, + "ordinal_hex": "0x00000277", + "name": "XamContentGetAttributesInternal", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 632, + "ordinal_hex": "0x00000278", + "name": "XamContentOpenFileInternal", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 633, + "ordinal_hex": "0x00000279", + "name": "XamContentAggregateCreateEnumerator", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Content", + "source_file": "src/xenia/kernel/xam/xam_content_aggregate.cc" + }, + { + "module": "xam", + "ordinal": 634, + "ordinal_hex": "0x0000027A", + "name": "XamContentCreateAndMountPackage", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 635, + "ordinal_hex": "0x0000027B", + "name": "XamContentOpenPackageFile", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 636, + "ordinal_hex": "0x0000027C", + "name": "XamContentMountPackage", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 637, + "ordinal_hex": "0x0000027D", + "name": "XamContentFlushPackage", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 638, + "ordinal_hex": "0x0000027E", + "name": "XamContentClosePackageFile", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 639, + "ordinal_hex": "0x0000027F", + "name": "XamContentDuplicateFileHandle", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 640, + "ordinal_hex": "0x00000280", + "name": "XamGetExecutionId", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_info.cc" + }, + { + "module": "xam", + "ordinal": 641, + "ordinal_hex": "0x00000281", + "name": "XamGetGameRatings", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 642, + "ordinal_hex": "0x00000282", + "name": "XamGetSystemVersion", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_info.cc" + }, + { + "module": "xam", + "ordinal": 643, + "ordinal_hex": "0x00000283", + "name": "XamContentGetLocalizedString", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 644, + "ordinal_hex": "0x00000284", + "name": "XamContentGetDefaultDevice", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 645, + "ordinal_hex": "0x00000285", + "name": "XamContentInstallInternal", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 646, + "ordinal_hex": "0x00000286", + "name": "XamContentSetMediaMetaDataInternal", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 647, + "ordinal_hex": "0x00000287", + "name": "XamContentGetDeviceSerialNumber", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 648, + "ordinal_hex": "0x00000288", + "name": "XamContentGetMountedPackageByRootName", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 649, + "ordinal_hex": "0x00000289", + "name": "XamContentRegisterChangeCallback", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Content", + "source_file": "src/xenia/kernel/xam/xam_content.cc" + }, + { + "module": "xam", + "ordinal": 650, + "ordinal_hex": "0x0000028A", + "name": "XamNotifyCreateListener", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_notify.cc" + }, + { + "module": "xam", + "ordinal": 651, + "ordinal_hex": "0x0000028B", + "name": "XNotifyGetNext", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "HighFrequency" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_notify.cc" + }, + { + "module": "xam", + "ordinal": 652, + "ordinal_hex": "0x0000028C", + "name": "XNotifyPositionUI", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_notify.cc" + }, + { + "module": "xam", + "ordinal": 653, + "ordinal_hex": "0x0000028D", + "name": "XNotifyDelayUI", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_notify.cc" + }, + { + "module": "xam", + "ordinal": 654, + "ordinal_hex": "0x0000028E", + "name": "XNotifyBroadcast", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_notify.cc" + }, + { + "module": "xam", + "ordinal": 655, + "ordinal_hex": "0x0000028F", + "name": "XNotifyRegisterArea", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 656, + "ordinal_hex": "0x00000290", + "name": "XNotifyQueueUI", + "type": "function", + "status": "sketchy", + "tags": [ + "Sketchy" + ], + "category": "UI", + "source_file": "src/xenia/kernel/xam/xam_ui.cc" + }, + { + "module": "xam", + "ordinal": 657, + "ordinal_hex": "0x00000291", + "name": "XamNotifyCreateListenerInternal", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_notify.cc" + }, + { + "module": "xam", + "ordinal": 658, + "ordinal_hex": "0x00000292", + "name": "XNotifyUISetOptions", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 659, + "ordinal_hex": "0x00000293", + "name": "XNotifyUIGetOptions", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 660, + "ordinal_hex": "0x00000294", + "name": "XamContentLaunchImageInternalEx", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 661, + "ordinal_hex": "0x00000295", + "name": "XamShutdown", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 662, + "ordinal_hex": "0x00000296", + "name": "XamAllocDevkitHeapAvailable", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 663, + "ordinal_hex": "0x00000297", + "name": "XamNotifyCreateListenerRangeInternal", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 664, + "ordinal_hex": "0x00000298", + "name": "XNotifyQueueUIEx", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 665, + "ordinal_hex": "0x00000299", + "name": "XamAppRequestLoadEx", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 666, + "ordinal_hex": "0x0000029A", + "name": "XuiPNGTextureLoader", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 667, + "ordinal_hex": "0x0000029B", + "name": "XuiRenderGetXuiDevice", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 668, + "ordinal_hex": "0x0000029C", + "name": "XuiDefault_False", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 669, + "ordinal_hex": "0x0000029D", + "name": "XamUserGetReportingInfo", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 670, + "ordinal_hex": "0x0000029E", + "name": "XamUpdateStart", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 671, + "ordinal_hex": "0x0000029F", + "name": "XamUpdateGetProgress", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 672, + "ordinal_hex": "0x000002A0", + "name": "XamUpdateGetExtenderInstance", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 673, + "ordinal_hex": "0x000002A1", + "name": "XamUpdateFinish", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 674, + "ordinal_hex": "0x000002A2", + "name": "XamUpdateAttachExtenderInstance", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 675, + "ordinal_hex": "0x000002A3", + "name": "XamUpdateAllocateExtenderBuffer", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 676, + "ordinal_hex": "0x000002A4", + "name": "XamRestartTitleLoadAfterUpdate", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 677, + "ordinal_hex": "0x000002A5", + "name": "XamUIThreadDisableFontPatching", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 678, + "ordinal_hex": "0x000002A6", + "name": "XamUpdateGetBaseSystemVersion", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 679, + "ordinal_hex": "0x000002A7", + "name": "XamUpdateGetCurrentSystemVersion", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 680, + "ordinal_hex": "0x000002A8", + "name": "XamUIThreadEnableFontPatching", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 681, + "ordinal_hex": "0x000002A9", + "name": "XamTerminateTitleForUpdate", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 682, + "ordinal_hex": "0x000002AA", + "name": "XamSystemUpdateInstallLocal", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 683, + "ordinal_hex": "0x000002AB", + "name": "XamUpdateChainPass3FromPass2", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 685, + "ordinal_hex": "0x000002AD", + "name": "XamInputGetCapabilitiesEx", + "type": "function", + "status": "sketchy", + "tags": [ + "Sketchy" + ], + "category": "Input", + "source_file": "src/xenia/kernel/xam/xam_input.cc" + }, + { + "module": "xam", + "ordinal": 686, + "ordinal_hex": "0x000002AE", + "name": "XamUserIsUnsafeProgrammingAllowed", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "UserProfiles", + "source_file": "src/xenia/kernel/xam/xam_user.cc" + }, + { + "module": "xam", + "ordinal": 687, + "ordinal_hex": "0x000002AF", + "name": "XamDevAuthSetFaultEx", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 688, + "ordinal_hex": "0x000002B0", + "name": "XamUpdateGetData", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 689, + "ordinal_hex": "0x000002B1", + "name": "XamCacheIntegrityCheck", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 690, + "ordinal_hex": "0x000002B2", + "name": "XamCacheStoreFile", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 691, + "ordinal_hex": "0x000002B3", + "name": "XamCacheFetchFile", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 692, + "ordinal_hex": "0x000002B4", + "name": "XamCacheOpenFile", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 693, + "ordinal_hex": "0x000002B5", + "name": "XamCacheCloseFile", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 694, + "ordinal_hex": "0x000002B6", + "name": "XamGetCachedTitleName", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_info.cc" + }, + { + "module": "xam", + "ordinal": 695, + "ordinal_hex": "0x000002B7", + "name": "XamCacheReset", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 696, + "ordinal_hex": "0x000002B8", + "name": "XamGetCachedGamerTag", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 697, + "ordinal_hex": "0x000002B9", + "name": "XamGetCachedGamerTagW", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 698, + "ordinal_hex": "0x000002BA", + "name": "XamCacheDeleteFile", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 699, + "ordinal_hex": "0x000002BB", + "name": "XamCacheRenameFile", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 700, + "ordinal_hex": "0x000002BC", + "name": "XamShowSigninUI", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "UserProfiles", + "source_file": "src/xenia/kernel/xam/xam_ui.cc" + }, + { + "module": "xam", + "ordinal": 701, + "ordinal_hex": "0x000002BD", + "name": "XamShowSigninUIEx", + "type": "function", + "status": "sketchy", + "tags": [ + "Sketchy" + ], + "category": "UserProfiles", + "source_file": "src/xenia/kernel/xam/xam_ui.cc" + }, + { + "module": "xam", + "ordinal": 702, + "ordinal_hex": "0x000002BE", + "name": "XamShowSigninUIp", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "UserProfiles", + "source_file": "src/xenia/kernel/xam/xam_ui.cc" + }, + { + "module": "xam", + "ordinal": 703, + "ordinal_hex": "0x000002BF", + "name": "XamShowFriendsUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 704, + "ordinal_hex": "0x000002C0", + "name": "XamShowMessagesUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 705, + "ordinal_hex": "0x000002C1", + "name": "XamShowKeyboardUI", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "UI", + "source_file": "src/xenia/kernel/xam/xam_ui.cc" + }, + { + "module": "xam", + "ordinal": 706, + "ordinal_hex": "0x000002C2", + "name": "XamShowQuickChatUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 707, + "ordinal_hex": "0x000002C3", + "name": "XamShowVoiceMailUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 708, + "ordinal_hex": "0x000002C4", + "name": "XamShowGamerCardUI", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "UserProfiles", + "source_file": "src/xenia/kernel/xam/xam_ui.cc" + }, + { + "module": "xam", + "ordinal": 709, + "ordinal_hex": "0x000002C5", + "name": "XamShowAchievementsUI", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "UserProfiles", + "source_file": "src/xenia/kernel/xam/xam_ui.cc" + }, + { + "module": "xam", + "ordinal": 710, + "ordinal_hex": "0x000002C6", + "name": "XamShowPlayerReviewUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 711, + "ordinal_hex": "0x000002C7", + "name": "XamShowMarketplaceUI", + "type": "function", + "status": "sketchy", + "tags": [ + "Sketchy" + ], + "category": "UI", + "source_file": "src/xenia/kernel/xam/xam_ui.cc" + }, + { + "module": "xam", + "ordinal": 712, + "ordinal_hex": "0x000002C8", + "name": "XamShowPlayersUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 713, + "ordinal_hex": "0x000002C9", + "name": "XamShowUpdaterUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 714, + "ordinal_hex": "0x000002CA", + "name": "XamShowMessageBoxUI", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "UI", + "source_file": "src/xenia/kernel/xam/xam_ui.cc" + }, + { + "module": "xam", + "ordinal": 715, + "ordinal_hex": "0x000002CB", + "name": "XamShowDeviceSelectorUI", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "UI", + "source_file": "src/xenia/kernel/xam/xam_ui.cc" + }, + { + "module": "xam", + "ordinal": 716, + "ordinal_hex": "0x000002CC", + "name": "XamShowMessageComposeUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 717, + "ordinal_hex": "0x000002CD", + "name": "XamShowGameInviteUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 718, + "ordinal_hex": "0x000002CE", + "name": "XamShowFriendRequestUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 719, + "ordinal_hex": "0x000002CF", + "name": "XamShowCreateProfileUI", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "UserProfiles", + "source_file": "src/xenia/kernel/xam/xam_ui.cc" + }, + { + "module": "xam", + "ordinal": 720, + "ordinal_hex": "0x000002D0", + "name": "XamShowGamesUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 721, + "ordinal_hex": "0x000002D1", + "name": "XamShowLiveSignupUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 722, + "ordinal_hex": "0x000002D2", + "name": "XamShowFriendsUIp", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 723, + "ordinal_hex": "0x000002D3", + "name": "XamShowComplaintUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 724, + "ordinal_hex": "0x000002D4", + "name": "XamShowReputationUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 725, + "ordinal_hex": "0x000002D5", + "name": "XamShowGamerCardUIForXUID", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 726, + "ordinal_hex": "0x000002D6", + "name": "XamShowForcedNameChangeUI", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "UI", + "source_file": "src/xenia/kernel/xam/xam_ui.cc" + }, + { + "module": "xam", + "ordinal": 727, + "ordinal_hex": "0x000002D7", + "name": "XamShowLiveUpsellUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 728, + "ordinal_hex": "0x000002D8", + "name": "XamShowPasscodeVerifyUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 729, + "ordinal_hex": "0x000002D9", + "name": "XamShowDirtyDiscErrorUI", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "UI", + "source_file": "src/xenia/kernel/xam/xam_ui.cc" + }, + { + "module": "xam", + "ordinal": 730, + "ordinal_hex": "0x000002DA", + "name": "XamShowSignupCreditCardUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 731, + "ordinal_hex": "0x000002DB", + "name": "XamShowPrivateChatInviteUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 732, + "ordinal_hex": "0x000002DC", + "name": "XamShowMessageBoxUIEx", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "UI", + "source_file": "src/xenia/kernel/xam/xam_ui.cc" + }, + { + "module": "xam", + "ordinal": 733, + "ordinal_hex": "0x000002DD", + "name": "XamShowRecentMessageUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 734, + "ordinal_hex": "0x000002DE", + "name": "XamShowRecentMessageUIEx", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 735, + "ordinal_hex": "0x000002DF", + "name": "XamShowMessagesUIEx", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 736, + "ordinal_hex": "0x000002E0", + "name": "XamShowAchievementDetailsUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 737, + "ordinal_hex": "0x000002E1", + "name": "XamShowPersonalizationUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 738, + "ordinal_hex": "0x000002E2", + "name": "XamShowChangeGamerTileUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 739, + "ordinal_hex": "0x000002E3", + "name": "XamShowVoiceSettingsUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 740, + "ordinal_hex": "0x000002E4", + "name": "XamShowVideoChatInviteUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 741, + "ordinal_hex": "0x000002E5", + "name": "XamShowCustomMessageComposeUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 742, + "ordinal_hex": "0x000002E6", + "name": "XamShowCustomPlayerListUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 743, + "ordinal_hex": "0x000002E7", + "name": "XamShowMarketplaceDownloadItemsUI", + "type": "function", + "status": "sketchy", + "tags": [ + "Sketchy" + ], + "category": "UI", + "source_file": "src/xenia/kernel/xam/xam_ui.cc" + }, + { + "module": "xam", + "ordinal": 744, + "ordinal_hex": "0x000002E8", + "name": "XamShowMarketplaceUIEx", + "type": "function", + "status": "sketchy", + "tags": [ + "Sketchy" + ], + "category": "UI", + "source_file": "src/xenia/kernel/xam/xam_ui.cc" + }, + { + "module": "xam", + "ordinal": 745, + "ordinal_hex": "0x000002E9", + "name": "XamShowMessageBox", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 746, + "ordinal_hex": "0x000002EA", + "name": "XamIsSysUiInvokedByXenonButton", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 747, + "ordinal_hex": "0x000002EB", + "name": "XamIsSysUiInvokedByTitle", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 748, + "ordinal_hex": "0x000002EC", + "name": "XamIsUIActive", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "HighFrequency" + ], + "category": "UI", + "source_file": "src/xenia/kernel/xam/xam_ui.cc" + }, + { + "module": "xam", + "ordinal": 749, + "ordinal_hex": "0x000002ED", + "name": "XamSysUiDisableAutoClose", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 750, + "ordinal_hex": "0x000002EE", + "name": "XamUserCreateAchievementEnumerator", + "type": "function", + "status": "sketchy", + "tags": [ + "Sketchy" + ], + "category": "UserProfiles", + "source_file": "src/xenia/kernel/xam/xam_user.cc" + }, + { + "module": "xam", + "ordinal": 751, + "ordinal_hex": "0x000002EF", + "name": "XamReadTile", + "type": "function", + "status": "sketchy", + "tags": [ + "Sketchy" + ], + "category": "UserProfiles", + "source_file": "src/xenia/kernel/xam/xam_user.cc" + }, + { + "module": "xam", + "ordinal": 752, + "ordinal_hex": "0x000002F0", + "name": "XamWriteGamerTile", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "UserProfiles", + "source_file": "src/xenia/kernel/xam/xam_user.cc" + }, + { + "module": "xam", + "ordinal": 753, + "ordinal_hex": "0x000002F1", + "name": "XamWriteTile", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 754, + "ordinal_hex": "0x000002F2", + "name": "XamReadImage", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 755, + "ordinal_hex": "0x000002F3", + "name": "XamUserCreateTitlesPlayedEnumerator", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "UserProfiles", + "source_file": "src/xenia/kernel/xam/xam_user.cc" + }, + { + "module": "xam", + "ordinal": 756, + "ordinal_hex": "0x000002F4", + "name": "XamDecompressPNGToTexture", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 757, + "ordinal_hex": "0x000002F5", + "name": "XamReadTileToTexture", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "UserProfiles", + "source_file": "src/xenia/kernel/xam/xam_user.cc" + }, + { + "module": "xam", + "ordinal": 758, + "ordinal_hex": "0x000002F6", + "name": "XamReadString", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 759, + "ordinal_hex": "0x000002F7", + "name": "XamUserCreateStatsEnumerator", + "type": "function", + "status": "sketchy", + "tags": [ + "Sketchy" + ], + "category": "UserProfiles", + "source_file": "src/xenia/kernel/xam/xam_user.cc" + }, + { + "module": "xam", + "ordinal": 760, + "ordinal_hex": "0x000002F8", + "name": "XamPrepareGamerTiles", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 761, + "ordinal_hex": "0x000002F9", + "name": "XamClearTitle", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 762, + "ordinal_hex": "0x000002FA", + "name": "XamReadStrings", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 763, + "ordinal_hex": "0x000002FB", + "name": "XamWriteGamerTileEx", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 764, + "ordinal_hex": "0x000002FC", + "name": "XamReadTileEx", + "type": "function", + "status": "sketchy", + "tags": [ + "Sketchy" + ], + "category": "UserProfiles", + "source_file": "src/xenia/kernel/xam/xam_user.cc" + }, + { + "module": "xam", + "ordinal": 765, + "ordinal_hex": "0x000002FD", + "name": "XamReadTileToTextureEx", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 766, + "ordinal_hex": "0x000002FE", + "name": "XamShowMessengerUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 767, + "ordinal_hex": "0x000002FF", + "name": "XamShowKeyboardUIMessenger", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 768, + "ordinal_hex": "0x00000300", + "name": "XamShowLiveUpsellUIEx", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 769, + "ordinal_hex": "0x00000301", + "name": "XamShowJoinSessionInProgressUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 770, + "ordinal_hex": "0x00000302", + "name": "XamShowGraduateUserUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 771, + "ordinal_hex": "0x00000303", + "name": "XamShowGamerCardUIForXUIDp", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 772, + "ordinal_hex": "0x00000304", + "name": "XamShowGuideUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 773, + "ordinal_hex": "0x00000305", + "name": "XamShowPartyUI", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_ui.cc" + }, + { + "module": "xam", + "ordinal": 774, + "ordinal_hex": "0x00000306", + "name": "XamShowPartyInviteUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 775, + "ordinal_hex": "0x00000307", + "name": "XamUserAddRecentPlayer", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 776, + "ordinal_hex": "0x00000308", + "name": "XamUserUpdateRecentPlayer", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 777, + "ordinal_hex": "0x00000309", + "name": "XamUserCreatePlayerEnumerator", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 778, + "ordinal_hex": "0x0000030A", + "name": "XamParseGamerTileKey", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "UserProfiles", + "source_file": "src/xenia/kernel/xam/xam_user.cc" + }, + { + "module": "xam", + "ordinal": 779, + "ordinal_hex": "0x0000030B", + "name": "XamShowCommunitySessionsUI", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_ui.cc" + }, + { + "module": "xam", + "ordinal": 780, + "ordinal_hex": "0x0000030C", + "name": "XamVoiceCreate", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_voice.cc" + }, + { + "module": "xam", + "ordinal": 781, + "ordinal_hex": "0x0000030D", + "name": "XamVoiceHeadsetPresent", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_voice.cc" + }, + { + "module": "xam", + "ordinal": 782, + "ordinal_hex": "0x0000030E", + "name": "XamVoiceSubmitPacket", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_voice.cc" + }, + { + "module": "xam", + "ordinal": 783, + "ordinal_hex": "0x0000030F", + "name": "XamVoiceClose", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_voice.cc" + }, + { + "module": "xam", + "ordinal": 784, + "ordinal_hex": "0x00000310", + "name": "XamVoiceGetBatteryStatus", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 785, + "ordinal_hex": "0x00000311", + "name": "Refresh_", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 786, + "ordinal_hex": "0x00000312", + "name": "Refresh_0", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 787, + "ordinal_hex": "0x00000313", + "name": "XamShowJoinSessionByIdInProgressUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 788, + "ordinal_hex": "0x00000314", + "name": "XamShowPartyJoinInProgressUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 789, + "ordinal_hex": "0x00000315", + "name": "XamBuildSharedSystemResourceLocator", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_info.cc" + }, + { + "module": "xam", + "ordinal": 790, + "ordinal_hex": "0x00000316", + "name": "XamSessionCreateHandle", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "UserProfiles", + "source_file": "src/xenia/kernel/xam/xam_user.cc" + }, + { + "module": "xam", + "ordinal": 791, + "ordinal_hex": "0x00000317", + "name": "XamSessionRefObjByHandle", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "UserProfiles", + "source_file": "src/xenia/kernel/xam/xam_user.cc" + }, + { + "module": "xam", + "ordinal": 792, + "ordinal_hex": "0x00000318", + "name": "XamVoiceGetMicArrayStatus", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_voice.cc" + }, + { + "module": "xam", + "ordinal": 793, + "ordinal_hex": "0x00000319", + "name": "XamVoiceSetAudioCaptureRoutine", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 794, + "ordinal_hex": "0x0000031A", + "name": "XamVoiceGetDirectionalData", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 795, + "ordinal_hex": "0x0000031B", + "name": "XamBuildResourceLocator", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_info.cc" + }, + { + "module": "xam", + "ordinal": 796, + "ordinal_hex": "0x0000031C", + "name": "XamBuildLegacySystemResourceLocator", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_info.cc" + }, + { + "module": "xam", + "ordinal": 797, + "ordinal_hex": "0x0000031D", + "name": "XamBuildGamercardResourceLocator", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_info.cc" + }, + { + "module": "xam", + "ordinal": 798, + "ordinal_hex": "0x0000031E", + "name": "XamBuildDynamicResourceLocator", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 799, + "ordinal_hex": "0x0000031F", + "name": "XamBuildXamResourceLocator", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_info.cc" + }, + { + "module": "xam", + "ordinal": 800, + "ordinal_hex": "0x00000320", + "name": "XuiAnimRun", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 801, + "ordinal_hex": "0x00000321", + "name": "XuiApplyLocale", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 802, + "ordinal_hex": "0x00000322", + "name": "XuiBubbleMessage", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 803, + "ordinal_hex": "0x00000323", + "name": "XuiControlIsBackButton", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 804, + "ordinal_hex": "0x00000324", + "name": "XuiControlIsNavButton", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 805, + "ordinal_hex": "0x00000325", + "name": "XuiCreateObject", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 806, + "ordinal_hex": "0x00000326", + "name": "XuiDestroyObject", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 807, + "ordinal_hex": "0x00000327", + "name": "XuiDynamicCast", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 808, + "ordinal_hex": "0x00000328", + "name": "XuiElementAddChild", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 809, + "ordinal_hex": "0x00000329", + "name": "XuiElementFindNamedFrame", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 810, + "ordinal_hex": "0x0000032A", + "name": "XuiElementGetChildById", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 811, + "ordinal_hex": "0x0000032B", + "name": "XuiElementGetFirstChild", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 812, + "ordinal_hex": "0x0000032C", + "name": "XuiElementGetFocus", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 813, + "ordinal_hex": "0x0000032D", + "name": "XuiElementGetFocusUser", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 814, + "ordinal_hex": "0x0000032E", + "name": "XuiElementGetId", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 815, + "ordinal_hex": "0x0000032F", + "name": "XuiElementGetLastChild", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 816, + "ordinal_hex": "0x00000330", + "name": "XuiElementGetNext", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 817, + "ordinal_hex": "0x00000331", + "name": "XuiElementGetParent", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 818, + "ordinal_hex": "0x00000332", + "name": "XuiElementGetUserFocus", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 819, + "ordinal_hex": "0x00000333", + "name": "XuiElementInitFocus", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 820, + "ordinal_hex": "0x00000334", + "name": "XuiElementInitUserFocus", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 821, + "ordinal_hex": "0x00000335", + "name": "XuiElementPlayTimeline", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 822, + "ordinal_hex": "0x00000336", + "name": "XuiElementSetBounds", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 823, + "ordinal_hex": "0x00000337", + "name": "XuiElementSetFocus", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 824, + "ordinal_hex": "0x00000338", + "name": "XuiElementSetUserFocus", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 825, + "ordinal_hex": "0x00000339", + "name": "XuiElementTreeGetFocus", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 826, + "ordinal_hex": "0x0000033A", + "name": "XuiFindClass", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 827, + "ordinal_hex": "0x0000033B", + "name": "XuiFreeStringTable", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 828, + "ordinal_hex": "0x0000033C", + "name": "XuiGetBaseObject", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 829, + "ordinal_hex": "0x0000033D", + "name": "XuiGetClass", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 830, + "ordinal_hex": "0x0000033E", + "name": "XuiGetObjectClass", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 831, + "ordinal_hex": "0x0000033F", + "name": "XuiGetOuter", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 832, + "ordinal_hex": "0x00000340", + "name": "XuiInit", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 833, + "ordinal_hex": "0x00000341", + "name": "XuiLoadFromBinary", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 834, + "ordinal_hex": "0x00000342", + "name": "XuiLoadStringTableFromFile", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 835, + "ordinal_hex": "0x00000343", + "name": "XuiVisualGetBasePath", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 836, + "ordinal_hex": "0x00000344", + "name": "XuiLookupStringTable", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 837, + "ordinal_hex": "0x00000345", + "name": "XuiNavButtonGetPressPath", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 838, + "ordinal_hex": "0x00000346", + "name": "XuiObjectFromHandle", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 839, + "ordinal_hex": "0x00000347", + "name": "XuiObjectGetProperty", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 840, + "ordinal_hex": "0x00000348", + "name": "XuiObjectGetPropertyId", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 841, + "ordinal_hex": "0x00000349", + "name": "XuiProcessInput", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 842, + "ordinal_hex": "0x0000034A", + "name": "XuiRegisterClass", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 843, + "ordinal_hex": "0x0000034B", + "name": "XuiRenderBegin", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 844, + "ordinal_hex": "0x0000034C", + "name": "XuiRenderCreateDC", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 845, + "ordinal_hex": "0x0000034D", + "name": "XuiRenderDCDeviceChanged", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 846, + "ordinal_hex": "0x0000034E", + "name": "XuiRenderDestroyDC", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 847, + "ordinal_hex": "0x0000034F", + "name": "XuiRenderEnd", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 848, + "ordinal_hex": "0x00000350", + "name": "XuiRenderGetBackBufferSize", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 849, + "ordinal_hex": "0x00000351", + "name": "XuiRenderInit", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 850, + "ordinal_hex": "0x00000352", + "name": "XuiRenderInitShared", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 851, + "ordinal_hex": "0x00000353", + "name": "XuiRenderPresent", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 852, + "ordinal_hex": "0x00000354", + "name": "XuiRenderSetViewTransform", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 853, + "ordinal_hex": "0x00000355", + "name": "XuiRenderUninit", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 854, + "ordinal_hex": "0x00000356", + "name": "XamShowNuiGuideUI", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_nui.cc" + }, + { + "module": "xam", + "ordinal": 855, + "ordinal_hex": "0x00000357", + "name": "XuiSceneCreate", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 856, + "ordinal_hex": "0x00000358", + "name": "XuiSceneNavigateBack", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 857, + "ordinal_hex": "0x00000359", + "name": "XuiSceneNavigateFirst", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 858, + "ordinal_hex": "0x0000035A", + "name": "XuiSceneNavigateForward", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 859, + "ordinal_hex": "0x0000035B", + "name": "XuiScenePlayBackFromTransition", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 860, + "ordinal_hex": "0x0000035C", + "name": "XuiScenePlayBackToTransition", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 861, + "ordinal_hex": "0x0000035D", + "name": "XuiScenePlayFromTransition", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 862, + "ordinal_hex": "0x0000035E", + "name": "XuiScenePlayToTransition", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 863, + "ordinal_hex": "0x0000035F", + "name": "XuiSendMessage", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 864, + "ordinal_hex": "0x00000360", + "name": "XuiSetLocale", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 865, + "ordinal_hex": "0x00000361", + "name": "XuiUninit", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 866, + "ordinal_hex": "0x00000362", + "name": "XuiUnregisterClass", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 867, + "ordinal_hex": "0x00000363", + "name": "XuiTextElementSetText", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 868, + "ordinal_hex": "0x00000364", + "name": "XuiSetTimer", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 869, + "ordinal_hex": "0x00000365", + "name": "XuiTimersRun", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 870, + "ordinal_hex": "0x00000366", + "name": "XuiTextElementGetText", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 871, + "ordinal_hex": "0x00000367", + "name": "XuiVisualSetBasePath", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 872, + "ordinal_hex": "0x00000368", + "name": "XuiHandleIsValid", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 873, + "ordinal_hex": "0x00000369", + "name": "XuiAlloc", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 874, + "ordinal_hex": "0x0000036A", + "name": "XuiFree", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 875, + "ordinal_hex": "0x0000036B", + "name": "XuiDefault_True", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 876, + "ordinal_hex": "0x0000036C", + "name": "XuiDefault_EmptyString", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 877, + "ordinal_hex": "0x0000036D", + "name": "XuiDefault_IntegerZero", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 878, + "ordinal_hex": "0x0000036E", + "name": "XuiCopyString", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 879, + "ordinal_hex": "0x0000036F", + "name": "XuiRealloc", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 880, + "ordinal_hex": "0x00000370", + "name": "XuiControlPlayOptionalVisual", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 881, + "ordinal_hex": "0x00000371", + "name": "XuiKillTimer", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 882, + "ordinal_hex": "0x00000372", + "name": "XuiElementEnableInput", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 883, + "ordinal_hex": "0x00000373", + "name": "XuiElementInputEnabled", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 884, + "ordinal_hex": "0x00000374", + "name": "XuiIsInstanceOf", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 885, + "ordinal_hex": "0x00000375", + "name": "XuiResourceComposeLocator", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 886, + "ordinal_hex": "0x00000376", + "name": "XuiResourceLocatorIsAbsolute", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 887, + "ordinal_hex": "0x00000377", + "name": "XuiBroadcastMessage", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 888, + "ordinal_hex": "0x00000378", + "name": "XuiElementDisallowRecursiveTimelineControl", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 889, + "ordinal_hex": "0x00000379", + "name": "XUIElementPropVal_Construct", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 890, + "ordinal_hex": "0x0000037A", + "name": "XUIElementPropVal_Destruct", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 891, + "ordinal_hex": "0x0000037B", + "name": "XUIElementPropVal_SetString", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 892, + "ordinal_hex": "0x0000037C", + "name": "XuiObjectSetProperty", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 893, + "ordinal_hex": "0x0000037D", + "name": "XuiElementGetOpacity", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 894, + "ordinal_hex": "0x0000037E", + "name": "XuiElementSetOpacity", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 895, + "ordinal_hex": "0x0000037F", + "name": "XuiEditSetTextLimit", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 896, + "ordinal_hex": "0x00000380", + "name": "XuiEditGetTextLimit", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 897, + "ordinal_hex": "0x00000381", + "name": "XuiSliderSetValue", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 898, + "ordinal_hex": "0x00000382", + "name": "XuiSliderGetValue", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 899, + "ordinal_hex": "0x00000383", + "name": "XuiSliderSetRange", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 900, + "ordinal_hex": "0x00000384", + "name": "XuiElementUnlink", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 901, + "ordinal_hex": "0x00000385", + "name": "XuiElementInsertChild", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 902, + "ordinal_hex": "0x00000386", + "name": "XuiSceneNavigateBackToFirst", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 903, + "ordinal_hex": "0x00000387", + "name": "XuiProgressBarSetRange", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 904, + "ordinal_hex": "0x00000388", + "name": "XuiProgressBarSetValue", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 905, + "ordinal_hex": "0x00000389", + "name": "XuiProgressBarGetValue", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 906, + "ordinal_hex": "0x0000038A", + "name": "XuiControlAttachVisual", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 907, + "ordinal_hex": "0x0000038B", + "name": "XuiCreateTextureBrush", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 908, + "ordinal_hex": "0x0000038C", + "name": "XuiDestroyBrush", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 909, + "ordinal_hex": "0x0000038D", + "name": "XUIElementPropVal_SetColorFromUint", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 910, + "ordinal_hex": "0x0000038E", + "name": "XuiFigureSetFill", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 911, + "ordinal_hex": "0x0000038F", + "name": "XuiSliderGetRange", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 912, + "ordinal_hex": "0x00000390", + "name": "XuiFigureSetTexture", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 913, + "ordinal_hex": "0x00000391", + "name": "XuiControlGetItemAssociation", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 914, + "ordinal_hex": "0x00000392", + "name": "XuiResourceLoadAll", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 915, + "ordinal_hex": "0x00000393", + "name": "XuiImageElementSetImagePath", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 916, + "ordinal_hex": "0x00000394", + "name": "XuiImageElementGetImagePath", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 917, + "ordinal_hex": "0x00000395", + "name": "XuiControlGetVisual", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 918, + "ordinal_hex": "0x00000396", + "name": "XuiControlGetNavigation", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 919, + "ordinal_hex": "0x00000397", + "name": "XuiLookupStringTableByIndex", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 920, + "ordinal_hex": "0x00000398", + "name": "XUIElementPropVal_SetBool", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 921, + "ordinal_hex": "0x00000399", + "name": "XuiElementHasFocus", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 922, + "ordinal_hex": "0x0000039A", + "name": "XUIElementPropVal_SetUint", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 923, + "ordinal_hex": "0x0000039B", + "name": "XUIElementPropVal_Clear", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 924, + "ordinal_hex": "0x0000039C", + "name": "XuiEditSetTextFormatInfo", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 925, + "ordinal_hex": "0x0000039D", + "name": "XuiCreateSolidBrush", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 926, + "ordinal_hex": "0x0000039E", + "name": "XuiSceneInterruptTransitions", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 927, + "ordinal_hex": "0x0000039F", + "name": "XuiResourceOpen", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 928, + "ordinal_hex": "0x000003A0", + "name": "XuiResourceRead", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 929, + "ordinal_hex": "0x000003A1", + "name": "XuiResourceClose", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 930, + "ordinal_hex": "0x000003A2", + "name": "XuiVisualCreateInstance", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 931, + "ordinal_hex": "0x000003A3", + "name": "XuiElementGetTimeline", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 932, + "ordinal_hex": "0x000003A4", + "name": "GetCodecVersion", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 933, + "ordinal_hex": "0x000003A5", + "name": "XuiElementIsDescendant", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 934, + "ordinal_hex": "0x000003A6", + "name": "XuiSetMessageFilter", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 935, + "ordinal_hex": "0x000003A7", + "name": "XuiAttachTextureBrush", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 936, + "ordinal_hex": "0x000003A8", + "name": "XuiElementBeginRender", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 937, + "ordinal_hex": "0x000003A9", + "name": "XuiElementEndRender", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 938, + "ordinal_hex": "0x000003AA", + "name": "XuiDrawShape", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 939, + "ordinal_hex": "0x000003AB", + "name": "XuiSelectBrushEx", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 940, + "ordinal_hex": "0x000003AC", + "name": "XuiFigureGetShape", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 941, + "ordinal_hex": "0x000003AD", + "name": "XuiFillRect", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 942, + "ordinal_hex": "0x000003AE", + "name": "XuiVec2TransformCoord", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 943, + "ordinal_hex": "0x000003AF", + "name": "XuiMatrixMultiply", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 944, + "ordinal_hex": "0x000003B0", + "name": "XuiElementGetXForm", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 945, + "ordinal_hex": "0x000003B1", + "name": "XuiElementSetPosition", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 946, + "ordinal_hex": "0x000003B2", + "name": "XuiSelectBrush", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 947, + "ordinal_hex": "0x000003B3", + "name": "XuiElementRenderChildren", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 948, + "ordinal_hex": "0x000003B4", + "name": "XuiFreeUnusedTextures", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 949, + "ordinal_hex": "0x000003B5", + "name": "XuiListEnableItemOverride", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 950, + "ordinal_hex": "0x000003B6", + "name": "XuiListGetDefaultItemSize", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 951, + "ordinal_hex": "0x000003B7", + "name": "XuiResourceSeek", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 952, + "ordinal_hex": "0x000003B8", + "name": "XuiElementDiscardResources", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 953, + "ordinal_hex": "0x000003B9", + "name": "XuiTabSceneGoto", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 954, + "ordinal_hex": "0x000003BA", + "name": "XuiTabSceneGetCurrentTab", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 955, + "ordinal_hex": "0x000003BB", + "name": "XamShowWhatsOnUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 956, + "ordinal_hex": "0x000003BC", + "name": "XamShowEditProfileUI", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "UserProfiles", + "source_file": "src/xenia/kernel/xam/xam_ui.cc" + }, + { + "module": "xam", + "ordinal": 957, + "ordinal_hex": "0x000003BD", + "name": "XamShowStorePickerUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 958, + "ordinal_hex": "0x000003BE", + "name": "XamShowTermsOfUseUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 959, + "ordinal_hex": "0x000003BF", + "name": "XamShowJoinPartyUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 960, + "ordinal_hex": "0x000003C0", + "name": "XamShowWordRegisterUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 961, + "ordinal_hex": "0x000003C1", + "name": "XamOverrideHudOpenType", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 962, + "ordinal_hex": "0x000003C2", + "name": "XamShowAchievementsUIEx", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 963, + "ordinal_hex": "0x000003C3", + "name": "XamUserGetUserTenure", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "UserProfiles", + "source_file": "src/xenia/kernel/xam/xam_user.cc" + }, + { + "module": "xam", + "ordinal": 964, + "ordinal_hex": "0x000003C4", + "name": "XamUserGetSubscriptionType", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "UserProfiles", + "source_file": "src/xenia/kernel/xam/xam_user.cc" + }, + { + "module": "xam", + "ordinal": 965, + "ordinal_hex": "0x000003C5", + "name": "XamShowGameVoiceChannelUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 966, + "ordinal_hex": "0x000003C6", + "name": "XamShowAvatarAwardsUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 967, + "ordinal_hex": "0x000003C7", + "name": "XamShowAvatarAwardGamesUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 968, + "ordinal_hex": "0x000003C8", + "name": "XamShowVideoRichPresenceUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 969, + "ordinal_hex": "0x000003C9", + "name": "XamHudGetUserIndex", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 970, + "ordinal_hex": "0x000003CA", + "name": "XGetAudioFlags", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_info.cc" + }, + { + "module": "xam", + "ordinal": 971, + "ordinal_hex": "0x000003CB", + "name": "XGetAVPack", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_info.cc" + }, + { + "module": "xam", + "ordinal": 972, + "ordinal_hex": "0x000003CC", + "name": "XGetGameRegion", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_info.cc" + }, + { + "module": "xam", + "ordinal": 973, + "ordinal_hex": "0x000003CD", + "name": "XGetLanguage", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_info.cc" + }, + { + "module": "xam", + "ordinal": 974, + "ordinal_hex": "0x000003CE", + "name": "XapipGetLocale", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 975, + "ordinal_hex": "0x000003CF", + "name": "XGetVideoFlags", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 976, + "ordinal_hex": "0x000003D0", + "name": "XGetVideoStandard", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 977, + "ordinal_hex": "0x000003D1", + "name": "XGetVideoMode", + "type": "function", + "status": "sketchy", + "tags": [ + "Sketchy" + ], + "category": "Video", + "source_file": "src/xenia/kernel/xam/xam_video.cc" + }, + { + "module": "xam", + "ordinal": 978, + "ordinal_hex": "0x000003D2", + "name": "XamGetLanguage", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_info.cc" + }, + { + "module": "xam", + "ordinal": 979, + "ordinal_hex": "0x000003D3", + "name": "XUITimeline_Run", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 980, + "ordinal_hex": "0x000003D4", + "name": "XamSetAutomation", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 981, + "ordinal_hex": "0x000003D5", + "name": "XAutomationpBindController", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 982, + "ordinal_hex": "0x000003D6", + "name": "XAutomationpUnbindController", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Input", + "source_file": "src/xenia/kernel/xam/xam_input.cc" + }, + { + "module": "xam", + "ordinal": 983, + "ordinal_hex": "0x000003D7", + "name": "XAutomationpInputXenonButton", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 984, + "ordinal_hex": "0x000003D8", + "name": "XAutomationpInputPress", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 985, + "ordinal_hex": "0x000003D9", + "name": "XAutomationpInputSetState", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 986, + "ordinal_hex": "0x000003DA", + "name": "XamEnableOverdraw", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 987, + "ordinal_hex": "0x000003DB", + "name": "g_XuiAutomation", + "type": "variable", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 988, + "ordinal_hex": "0x000003DC", + "name": "XamVoiceGetMicArrayAudio", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 989, + "ordinal_hex": "0x000003DD", + "name": "XampSystemInput", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 990, + "ordinal_hex": "0x000003DE", + "name": "XamInputControl", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 991, + "ordinal_hex": "0x000003DF", + "name": "XuiElementGetPosition", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 992, + "ordinal_hex": "0x000003E0", + "name": "XamIsMessageBoxActive", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 993, + "ordinal_hex": "0x000003E1", + "name": "XamIsBackgroundSceneInTransition", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 994, + "ordinal_hex": "0x000003E2", + "name": "XuiElementTreeHasFocus", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 995, + "ordinal_hex": "0x000003E3", + "name": "XuiFigureClose", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 996, + "ordinal_hex": "0x000003E4", + "name": "GamerCardStartup", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 997, + "ordinal_hex": "0x000003E5", + "name": "GamerCardCleanup", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 998, + "ordinal_hex": "0x000003E6", + "name": "GamerCardRegisterControls", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 999, + "ordinal_hex": "0x000003E7", + "name": "GamerCardUnregisterControls", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1000, + "ordinal_hex": "0x000003E8", + "name": "RtlFindFirstFile", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1001, + "ordinal_hex": "0x000003E9", + "name": "RtlFindNextFile", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1002, + "ordinal_hex": "0x000003EA", + "name": "RtlGetModuleFileName", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1003, + "ordinal_hex": "0x000003EB", + "name": "RtlOutputDebugString", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1004, + "ordinal_hex": "0x000003EC", + "name": "RtlRemoveDirectory", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1005, + "ordinal_hex": "0x000003ED", + "name": "RtlSleep", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_info.cc" + }, + { + "module": "xam", + "ordinal": 1006, + "ordinal_hex": "0x000003EE", + "name": "RtlGetLastError", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_info.cc" + }, + { + "module": "xam", + "ordinal": 1007, + "ordinal_hex": "0x000003EF", + "name": "RtlSetLastError", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1008, + "ordinal_hex": "0x000003F0", + "name": "RtlSetLastNTError", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_info.cc" + }, + { + "module": "xam", + "ordinal": 1009, + "ordinal_hex": "0x000003F1", + "name": "RtlDebugPrint", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1010, + "ordinal_hex": "0x000003F2", + "name": "RtlDebugError", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1011, + "ordinal_hex": "0x000003F3", + "name": "XDebugWarning", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1012, + "ordinal_hex": "0x000003F4", + "name": "RtlDebugTrace", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1013, + "ordinal_hex": "0x000003F5", + "name": "RtlDebugEntry", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1014, + "ordinal_hex": "0x000003F6", + "name": "RtlDebugExit", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1015, + "ordinal_hex": "0x000003F7", + "name": "RtlGetAttributesOnHeapAlloc", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1016, + "ordinal_hex": "0x000003F8", + "name": "RtlSetAttributesOnHeapAlloc", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1017, + "ordinal_hex": "0x000003F9", + "name": "XuiFigureSetShape", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1018, + "ordinal_hex": "0x000003FA", + "name": "RtlCreateHeap", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1019, + "ordinal_hex": "0x000003FB", + "name": "RtlDestroyHeap", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1020, + "ordinal_hex": "0x000003FC", + "name": "RtlAllocateHeap", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1021, + "ordinal_hex": "0x000003FD", + "name": "RtlAllocateHeapSlowly", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1022, + "ordinal_hex": "0x000003FE", + "name": "RtlReAllocateHeap", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1023, + "ordinal_hex": "0x000003FF", + "name": "RtlFreeHeap", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1024, + "ordinal_hex": "0x00000400", + "name": "RtlFreeHeapSlowly", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1025, + "ordinal_hex": "0x00000401", + "name": "RtlSizeHeap", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1026, + "ordinal_hex": "0x00000402", + "name": "RtlZeroHeap", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1027, + "ordinal_hex": "0x00000403", + "name": "RtlDebugWalkHeap", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1028, + "ordinal_hex": "0x00000404", + "name": "RtlWalkHeap", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1029, + "ordinal_hex": "0x00000405", + "name": "RtlLockHeap", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1030, + "ordinal_hex": "0x00000406", + "name": "RtlUnlockHeap", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1031, + "ordinal_hex": "0x00000407", + "name": "RtlValidateHeap", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1032, + "ordinal_hex": "0x00000408", + "name": "RtlDebugCompactHeap", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1033, + "ordinal_hex": "0x00000409", + "name": "RtlCompactHeap", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1034, + "ordinal_hex": "0x0000040A", + "name": "XamAppSetTestOption", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1035, + "ordinal_hex": "0x0000040B", + "name": "XamAppReportError", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1036, + "ordinal_hex": "0x0000040C", + "name": "XamIsNuiUIActive", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_nui.cc" + }, + { + "module": "xam", + "ordinal": 1037, + "ordinal_hex": "0x0000040D", + "name": "XamVerifyPasscode", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1038, + "ordinal_hex": "0x0000040E", + "name": "OutputDebugStringA", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1039, + "ordinal_hex": "0x0000040F", + "name": "DebugBreak", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1040, + "ordinal_hex": "0x00000410", + "name": "GetCurrentThreadId", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_info.cc" + }, + { + "module": "xam", + "ordinal": 1041, + "ordinal_hex": "0x00000411", + "name": "XDebugError", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1042, + "ordinal_hex": "0x00000412", + "name": "XDebugWarning_", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1043, + "ordinal_hex": "0x00000413", + "name": "RtlDebugSetLevel", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1044, + "ordinal_hex": "0x00000414", + "name": "CloseHandle", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_info.cc" + }, + { + "module": "xam", + "ordinal": 1045, + "ordinal_hex": "0x00000415", + "name": "GetTickCount", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_info.cc" + }, + { + "module": "xam", + "ordinal": 1046, + "ordinal_hex": "0x00000416", + "name": "GetLastError", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_info.cc" + }, + { + "module": "xam", + "ordinal": 1047, + "ordinal_hex": "0x00000417", + "name": "SetFilePointer", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1048, + "ordinal_hex": "0x00000418", + "name": "SetFilePointerEx", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1049, + "ordinal_hex": "0x00000419", + "name": "SetLastError", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1050, + "ordinal_hex": "0x0000041A", + "name": "MultiByteToWideChar", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1051, + "ordinal_hex": "0x0000041B", + "name": "WideCharToMultiByte", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1052, + "ordinal_hex": "0x0000041C", + "name": "ReadFile", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1053, + "ordinal_hex": "0x0000041D", + "name": "FlushFileBuffers", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1054, + "ordinal_hex": "0x0000041E", + "name": "WriteFile", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1055, + "ordinal_hex": "0x0000041F", + "name": "OutputDebugStringW", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1056, + "ordinal_hex": "0x00000420", + "name": "SetEvent", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1057, + "ordinal_hex": "0x00000421", + "name": "XapiFormatTimeOut", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_info.cc" + }, + { + "module": "xam", + "ordinal": 1058, + "ordinal_hex": "0x00000422", + "name": "CreateMutexA", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1059, + "ordinal_hex": "0x00000423", + "name": "OpenMutexA", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1060, + "ordinal_hex": "0x00000424", + "name": "ReleaseMutex", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1061, + "ordinal_hex": "0x00000425", + "name": "WaitForSingleObject", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_info.cc" + }, + { + "module": "xam", + "ordinal": 1062, + "ordinal_hex": "0x00000426", + "name": "WaitForSingleObjectEx", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_info.cc" + }, + { + "module": "xam", + "ordinal": 1063, + "ordinal_hex": "0x00000427", + "name": "GetFileSize", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1064, + "ordinal_hex": "0x00000428", + "name": "GetFileSizeEx", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1065, + "ordinal_hex": "0x00000429", + "name": "XapiDirectoryInformationToFindData", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1066, + "ordinal_hex": "0x0000042A", + "name": "XapiFormatObjectAttributes", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1067, + "ordinal_hex": "0x0000042B", + "name": "ResetEvent", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1068, + "ordinal_hex": "0x0000042C", + "name": "wsprintfA", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1069, + "ordinal_hex": "0x0000042D", + "name": "wsprintfW", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1070, + "ordinal_hex": "0x0000042E", + "name": "GetOverlappedResult", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1071, + "ordinal_hex": "0x0000042F", + "name": "QueryPerformanceCounter", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1072, + "ordinal_hex": "0x00000430", + "name": "QueryPerformanceFrequency", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_info.cc" + }, + { + "module": "xam", + "ordinal": 1073, + "ordinal_hex": "0x00000431", + "name": "LocalAlloc", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1074, + "ordinal_hex": "0x00000432", + "name": "LocalFree", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1075, + "ordinal_hex": "0x00000433", + "name": "RaiseException", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1076, + "ordinal_hex": "0x00000434", + "name": "RtlUniform", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1077, + "ordinal_hex": "0x00000435", + "name": "RtlRandom", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_info.cc" + }, + { + "module": "xam", + "ordinal": 1078, + "ordinal_hex": "0x00000436", + "name": "Sleep", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_info.cc" + }, + { + "module": "xam", + "ordinal": 1079, + "ordinal_hex": "0x00000437", + "name": "SleepEx", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_info.cc" + }, + { + "module": "xam", + "ordinal": 1080, + "ordinal_hex": "0x00000438", + "name": "XMemSet", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1081, + "ordinal_hex": "0x00000439", + "name": "XRegisterThreadNotifyRoutine", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1082, + "ordinal_hex": "0x0000043A", + "name": "XGetOverlappedExtendedError", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1083, + "ordinal_hex": "0x0000043B", + "name": "XGetOverlappedResult", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1084, + "ordinal_hex": "0x0000043C", + "name": "CreateThread", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_info.cc" + }, + { + "module": "xam", + "ordinal": 1085, + "ordinal_hex": "0x0000043D", + "name": "ResumeThread", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_info.cc" + }, + { + "module": "xam", + "ordinal": 1086, + "ordinal_hex": "0x0000043E", + "name": "ExitThread", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_info.cc" + }, + { + "module": "xam", + "ordinal": 1087, + "ordinal_hex": "0x0000043F", + "name": "GetTimeZoneInformation", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1088, + "ordinal_hex": "0x00000440", + "name": "GetSystemTimeAsFileTime", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_info.cc" + }, + { + "module": "xam", + "ordinal": 1089, + "ordinal_hex": "0x00000441", + "name": "SystemTimeToFileTime", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1090, + "ordinal_hex": "0x00000442", + "name": "FileTimeToSystemTime", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1091, + "ordinal_hex": "0x00000443", + "name": "GetSystemTime", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1092, + "ordinal_hex": "0x00000444", + "name": "GetLocalTime", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1093, + "ordinal_hex": "0x00000445", + "name": "CreateDirectoryA", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1094, + "ordinal_hex": "0x00000446", + "name": "CreateEventA", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1095, + "ordinal_hex": "0x00000447", + "name": "CreateFileA", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1096, + "ordinal_hex": "0x00000448", + "name": "DeleteFileA", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1097, + "ordinal_hex": "0x00000449", + "name": "FindFirstFileA", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1098, + "ordinal_hex": "0x0000044A", + "name": "FindNextFileA", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1099, + "ordinal_hex": "0x0000044B", + "name": "GetFileAttributesA", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1100, + "ordinal_hex": "0x0000044C", + "name": "XamLoaderGetCurrentTitleD3DVersion", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1101, + "ordinal_hex": "0x0000044D", + "name": "GetFileAttributesExA", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1102, + "ordinal_hex": "0x0000044E", + "name": "GetModuleHandleA", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_info.cc" + }, + { + "module": "xam", + "ordinal": 1103, + "ordinal_hex": "0x0000044F", + "name": "GetDiskFreeSpaceExA", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1104, + "ordinal_hex": "0x00000450", + "name": "CopyFileA", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1105, + "ordinal_hex": "0x00000451", + "name": "SetEndOfFile", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1106, + "ordinal_hex": "0x00000452", + "name": "XamFamilyAddParentalExemptionToList", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1107, + "ordinal_hex": "0x00000453", + "name": "XamFamilyIsParentalValidationRequired", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1108, + "ordinal_hex": "0x00000454", + "name": "PIXBeginCapture", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1109, + "ordinal_hex": "0x00000455", + "name": "PIXEndCapture", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1110, + "ordinal_hex": "0x00000456", + "name": "PIXAddCounter", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1111, + "ordinal_hex": "0x00000457", + "name": "PIXGetGPUSlot", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1112, + "ordinal_hex": "0x00000458", + "name": "SetWaitableTimer", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1113, + "ordinal_hex": "0x00000459", + "name": "CancelWaitableTimer", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1114, + "ordinal_hex": "0x0000045A", + "name": "CreateWaitableTimerA", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1115, + "ordinal_hex": "0x0000045B", + "name": "DuplicateHandle", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1116, + "ordinal_hex": "0x0000045C", + "name": "XapipCreateThread", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_info.cc" + }, + { + "module": "xam", + "ordinal": 1117, + "ordinal_hex": "0x0000045D", + "name": "lstrcpyA", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1118, + "ordinal_hex": "0x0000045E", + "name": "lstrcpyW", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1119, + "ordinal_hex": "0x0000045F", + "name": "lstrcpynA", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1120, + "ordinal_hex": "0x00000460", + "name": "lstrcpynW", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1121, + "ordinal_hex": "0x00000461", + "name": "lstrcatA", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1122, + "ordinal_hex": "0x00000462", + "name": "lstrcatW", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1123, + "ordinal_hex": "0x00000463", + "name": "lstrlenA", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1124, + "ordinal_hex": "0x00000464", + "name": "lstrlenW", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_info.cc" + }, + { + "module": "xam", + "ordinal": 1125, + "ordinal_hex": "0x00000465", + "name": "IsBadReadPtr", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1126, + "ordinal_hex": "0x00000466", + "name": "IsBadWritePtr", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1127, + "ordinal_hex": "0x00000467", + "name": "FileTimeToLocalFileTime", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1128, + "ordinal_hex": "0x00000468", + "name": "XMemCpy", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1129, + "ordinal_hex": "0x00000469", + "name": "XMemCpyStreaming", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1130, + "ordinal_hex": "0x0000046A", + "name": "XamHudSetUserIndex", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1131, + "ordinal_hex": "0x0000046B", + "name": "XamShowNuiTroubleshooterUI", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_nui.cc" + }, + { + "module": "xam", + "ordinal": 1132, + "ordinal_hex": "0x0000046C", + "name": "XamTestShowNuiTroubleshooterUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1133, + "ordinal_hex": "0x0000046D", + "name": "XamShowPasscodeVerifyUIEx", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1134, + "ordinal_hex": "0x0000046E", + "name": "XamShowNuiAchievementsUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1135, + "ordinal_hex": "0x0000046F", + "name": "XamShowNuiCommunitySessionsUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1136, + "ordinal_hex": "0x00000470", + "name": "XamShowNuiDeviceSelectorUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1137, + "ordinal_hex": "0x00000471", + "name": "XamShowNuiDirtyDiscErrorUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1138, + "ordinal_hex": "0x00000472", + "name": "XamShowNuiFriendsUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1139, + "ordinal_hex": "0x00000473", + "name": "XamShowNuiGameInviteUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1140, + "ordinal_hex": "0x00000474", + "name": "XamShowNuiGamerCardUIForXUID", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1141, + "ordinal_hex": "0x00000475", + "name": "XamShowNuiMarketplaceDownloadItemsUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1142, + "ordinal_hex": "0x00000476", + "name": "XamShowNuiMarketplaceUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1143, + "ordinal_hex": "0x00000477", + "name": "XamShowNuiMessageBoxUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1144, + "ordinal_hex": "0x00000478", + "name": "XamShowNuiPartyUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1145, + "ordinal_hex": "0x00000479", + "name": "XamShowNuiFriendRequestUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1146, + "ordinal_hex": "0x0000047A", + "name": "XamShowNuiSigninUI", + "type": "function", + "status": "sketchy", + "tags": [ + "Sketchy" + ], + "category": "UserProfiles", + "source_file": "src/xenia/kernel/xam/xam_ui.cc" + }, + { + "module": "xam", + "ordinal": 1147, + "ordinal_hex": "0x0000047B", + "name": "XamShowNuiControllerRequiredUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1148, + "ordinal_hex": "0x0000047C", + "name": "XamShowNuiGamesUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1149, + "ordinal_hex": "0x0000047D", + "name": "XamShowNuiHardwareRequiredUI", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_nui.cc" + }, + { + "module": "xam", + "ordinal": 1150, + "ordinal_hex": "0x0000047E", + "name": "XamCacheStoreFileByString", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1151, + "ordinal_hex": "0x0000047F", + "name": "XamCacheFetchFileByString", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1152, + "ordinal_hex": "0x00000480", + "name": "XamCacheDeleteFileByString", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1153, + "ordinal_hex": "0x00000481", + "name": "XamGetCachedTitleNameEx", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1154, + "ordinal_hex": "0x00000482", + "name": "XamXlfsInitializeUploadQueue", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1155, + "ordinal_hex": "0x00000483", + "name": "XamXlfsUninitializeUploadQueue", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1156, + "ordinal_hex": "0x00000484", + "name": "XamXlfsMountUploadQueueInstance", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1157, + "ordinal_hex": "0x00000485", + "name": "XamXlfsUnmountUploadQueueInstance", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1158, + "ordinal_hex": "0x00000486", + "name": "XamVoiceRecordUserPrivileges", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1159, + "ordinal_hex": "0x00000487", + "name": "XamXlfsInitializeUploadQueueWithTestHooks", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1160, + "ordinal_hex": "0x00000488", + "name": "XamXlfsNotifyContentDeletion", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1161, + "ordinal_hex": "0x00000489", + "name": "XMemAlloc", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1162, + "ordinal_hex": "0x0000048A", + "name": "XMemFree", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1163, + "ordinal_hex": "0x0000048B", + "name": "XMemSize", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1164, + "ordinal_hex": "0x0000048C", + "name": "XamVoiceSetMicArrayIdleUsers", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1165, + "ordinal_hex": "0x0000048D", + "name": "XamVoiceMuteMicArray", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1166, + "ordinal_hex": "0x0000048E", + "name": "XamVoiceGetMicArrayUnderrunStatus", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1167, + "ordinal_hex": "0x0000048F", + "name": "XuiSceneEnableTransitionDependency", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1168, + "ordinal_hex": "0x00000490", + "name": "XamVoiceGetMicArrayAudioEx", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1169, + "ordinal_hex": "0x00000491", + "name": "XamVoiceDisableMicArray", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1170, + "ordinal_hex": "0x00000492", + "name": "XamUserGetDeviceId", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1171, + "ordinal_hex": "0x00000493", + "name": "XamUpdateEtxLogUpdateTaskStart", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1172, + "ordinal_hex": "0x00000494", + "name": "XamUpdateEtxLogUpdateTaskSuccess", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1173, + "ordinal_hex": "0x00000495", + "name": "XamUpdateEtxLogUpdateTaskFailure", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1174, + "ordinal_hex": "0x00000496", + "name": "XamEtxFlushLogs", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1175, + "ordinal_hex": "0x00000497", + "name": "XamVoiceIsActiveProcess", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_voice.cc" + }, + { + "module": "xam", + "ordinal": 1176, + "ordinal_hex": "0x00000498", + "name": "XamInactivityGetInactivityInterruptTime", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1177, + "ordinal_hex": "0x00000499", + "name": "XamInactivitySetInactivityInterruptTime", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1178, + "ordinal_hex": "0x0000049A", + "name": "XamInactivityGetLastActivityTime", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1179, + "ordinal_hex": "0x0000049B", + "name": "XamInactivitySetDetectionTaskPeriod", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1180, + "ordinal_hex": "0x0000049C", + "name": "XamInactivityEnablePowerDown", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1181, + "ordinal_hex": "0x0000049D", + "name": "XamUpdateGetChainMarker", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1182, + "ordinal_hex": "0x0000049E", + "name": "XGetVideoCapabilities", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Video", + "source_file": "src/xenia/kernel/xam/xam_video.cc" + }, + { + "module": "xam", + "ordinal": 1183, + "ordinal_hex": "0x0000049F", + "name": "XMsgProcessRequest", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1184, + "ordinal_hex": "0x000004A0", + "name": "XGetDisplaySize", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1185, + "ordinal_hex": "0x000004A1", + "name": "XamInputNonControllerGetRaw", + "type": "function", + "status": "sketchy", + "tags": [ + "Sketchy" + ], + "category": "Input", + "source_file": "src/xenia/kernel/xam/xam_input.cc" + }, + { + "module": "xam", + "ordinal": 1186, + "ordinal_hex": "0x000004A2", + "name": "XamInputNonControllerSetRaw", + "type": "function", + "status": "sketchy", + "tags": [ + "Sketchy" + ], + "category": "Input", + "source_file": "src/xenia/kernel/xam/xam_input.cc" + }, + { + "module": "xam", + "ordinal": 1187, + "ordinal_hex": "0x000004A3", + "name": "XamVoiceSetMicArrayBeamAngle", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1188, + "ordinal_hex": "0x000004A4", + "name": "XamUserGetAge", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1189, + "ordinal_hex": "0x000004A5", + "name": "XamUserGetAgeGroup", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1190, + "ordinal_hex": "0x000004A6", + "name": "XamVoiceGetMicArrayFilenameDesc", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1191, + "ordinal_hex": "0x000004A7", + "name": "XamLoaderGetState", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1192, + "ordinal_hex": "0x000004A8", + "name": "XamTaskQueryProperty", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1193, + "ordinal_hex": "0x000004A9", + "name": "XamGetLocale", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Locale", + "source_file": "src/xenia/kernel/xam/xam_locale.cc" + }, + { + "module": "xam", + "ordinal": 1194, + "ordinal_hex": "0x000004AA", + "name": "XamQueryTimeZoneInformation", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1195, + "ordinal_hex": "0x000004AB", + "name": "XamSetTimeZoneInformation", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1196, + "ordinal_hex": "0x000004AC", + "name": "XamLaunchURI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1199, + "ordinal_hex": "0x000004AF", + "name": "XamShowNuiMessagesUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1200, + "ordinal_hex": "0x000004B0", + "name": "XMPRegisterCodec", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1201, + "ordinal_hex": "0x000004B1", + "name": "XamNavigateBack", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1202, + "ordinal_hex": "0x000004B2", + "name": "XamPushBackURI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1203, + "ordinal_hex": "0x000004B3", + "name": "XamUserOverrideDeviceBindings", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1204, + "ordinal_hex": "0x000004B4", + "name": "XamUserOverrideBindingCallbacks", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1205, + "ordinal_hex": "0x000004B5", + "name": "XamUserOverrideUserInfo", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1206, + "ordinal_hex": "0x000004B6", + "name": "XamUserContentRestrictionGetFlags", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "UserProfiles", + "source_file": "src/xenia/kernel/xam/xam_user.cc" + }, + { + "module": "xam", + "ordinal": 1207, + "ordinal_hex": "0x000004B7", + "name": "XamUserContentRestrictionGetRating", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "UserProfiles", + "source_file": "src/xenia/kernel/xam/xam_user.cc" + }, + { + "module": "xam", + "ordinal": 1208, + "ordinal_hex": "0x000004B8", + "name": "XamUserContentRestrictionCheckAccess", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "UserProfiles", + "source_file": "src/xenia/kernel/xam/xam_user.cc" + }, + { + "module": "xam", + "ordinal": 1209, + "ordinal_hex": "0x000004B9", + "name": "XamShowFitnessBodyProfileUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1210, + "ordinal_hex": "0x000004BA", + "name": "XamFitnessAddBodyProfileRecord", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1211, + "ordinal_hex": "0x000004BB", + "name": "XamFamilyGetMembers", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1212, + "ordinal_hex": "0x000004BC", + "name": "XampXAuthStartup", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1213, + "ordinal_hex": "0x000004BD", + "name": "XampXAuthShutdown", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1214, + "ordinal_hex": "0x000004BE", + "name": "XamGetToken", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1215, + "ordinal_hex": "0x000004BF", + "name": "XamFreeToken", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1216, + "ordinal_hex": "0x000004C0", + "name": "XamGetAppliesTo", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1217, + "ordinal_hex": "0x000004C1", + "name": "XamFitnessClearBodyProfileRecords", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1218, + "ordinal_hex": "0x000004C2", + "name": "XamFitnessGetCurrentBodyProfileRecord", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1219, + "ordinal_hex": "0x000004C3", + "name": "XamFitnessGetAllBodyProfileRecords", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1220, + "ordinal_hex": "0x000004C4", + "name": "XamFitnessGetAllTitleSummaries", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1221, + "ordinal_hex": "0x000004C5", + "name": "XamFitnessGetOverallSummary", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1222, + "ordinal_hex": "0x000004C6", + "name": "XamFitnessAddFitnessEvent", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1223, + "ordinal_hex": "0x000004C7", + "name": "XamLrcGetInput", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1224, + "ordinal_hex": "0x000004C8", + "name": "XamLrcGetInputWithSeek", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1225, + "ordinal_hex": "0x000004C9", + "name": "XamLrcSetMediaState", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1226, + "ordinal_hex": "0x000004CA", + "name": "XamPixSetDirtyCounters", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1227, + "ordinal_hex": "0x000004CB", + "name": "XamFitnessCreateFitnessEventEnumerator", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1228, + "ordinal_hex": "0x000004CC", + "name": "XamFitnessInitialize", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1229, + "ordinal_hex": "0x000004CD", + "name": "XamRequestToken", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1230, + "ordinal_hex": "0x000004CE", + "name": "XamResolveURI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1231, + "ordinal_hex": "0x000004CF", + "name": "XamContentGetOnlineCreator", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1232, + "ordinal_hex": "0x000004D0", + "name": "XamShowBrandedKeyboardUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1233, + "ordinal_hex": "0x000004D1", + "name": "XamBackgroundDownloadNetworkStorageEnable", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1234, + "ordinal_hex": "0x000004D2", + "name": "XamBackgroundDownloadNetworkStorageIsEnabled", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1235, + "ordinal_hex": "0x000004D3", + "name": "XamShowNuiJoinSessionInProgressUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1236, + "ordinal_hex": "0x000004D4", + "name": "XamBase64Decode", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1237, + "ordinal_hex": "0x000004D5", + "name": "XamCertDecode", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1238, + "ordinal_hex": "0x000004D6", + "name": "XamCertDecodeRsaPublicKey", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1239, + "ordinal_hex": "0x000004D7", + "name": "XamCertValidateStruct", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1240, + "ordinal_hex": "0x000004D8", + "name": "XamFitnessConvertByteMetToFloatMet", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1241, + "ordinal_hex": "0x000004D9", + "name": "XamXgiBlobTrackerSetMockInfo", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1242, + "ordinal_hex": "0x000004DA", + "name": "XamFitnessMsgTimeToSystemTime", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1243, + "ordinal_hex": "0x000004DB", + "name": "XamFitnessSystemTimeToMsgTime", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1244, + "ordinal_hex": "0x000004DC", + "name": "XamShowFitnessWarnAboutPrivacyUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1245, + "ordinal_hex": "0x000004DD", + "name": "XamShowFitnessWarnAboutTimeUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1246, + "ordinal_hex": "0x000004DE", + "name": "XamFitnessUnInitialize", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1247, + "ordinal_hex": "0x000004DF", + "name": "XamBackgroundDownloadNetworkStorageOnContentChange", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1248, + "ordinal_hex": "0x000004E0", + "name": "XamLiveBaseConfigureInMemoryMockResponse", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1249, + "ordinal_hex": "0x000004E1", + "name": "InjectConnectionServerNotification", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1250, + "ordinal_hex": "0x000004E2", + "name": "XamFitnessConvertFloatMetToByteMet", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1251, + "ordinal_hex": "0x000004E3", + "name": "XamGetGamerTileKeyFromGamertag", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1252, + "ordinal_hex": "0x000004E4", + "name": "XamBackgroundDownloadNetworkStorageRegisterChangeCallback", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1253, + "ordinal_hex": "0x000004E5", + "name": "XamFindOrCreateInternalPassportAccount", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1254, + "ordinal_hex": "0x000004E6", + "name": "XOnlinepFriendsRequest", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1255, + "ordinal_hex": "0x000004E7", + "name": "XOnlinepFriendsAcceptRequest", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1256, + "ordinal_hex": "0x000004E8", + "name": "XOnlinepFriendsRejectRequest", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1257, + "ordinal_hex": "0x000004E9", + "name": "XOnlinepFriendsRemove", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1258, + "ordinal_hex": "0x000004EA", + "name": "XFriendsCreateEnumerator", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1259, + "ordinal_hex": "0x000004EB", + "name": "XamBackgroundDownloadNetworkStorageIsRunning", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1260, + "ordinal_hex": "0x000004EC", + "name": "XamCertGetSerialNumber", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1261, + "ordinal_hex": "0x000004ED", + "name": "XamShowOptionsUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1262, + "ordinal_hex": "0x000004EE", + "name": "XampXAuthGetTitleBuffer", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1263, + "ordinal_hex": "0x000004EF", + "name": "XamGetSTSTokenCache", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1264, + "ordinal_hex": "0x000004F0", + "name": "XamUserGetOnlineXUIDFromOfflineXUID", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1265, + "ordinal_hex": "0x000004F1", + "name": "XamIsUserUsingMetricSystem", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1266, + "ordinal_hex": "0x000004F2", + "name": "XamShowNuiVideoRichPresenceUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1267, + "ordinal_hex": "0x000004F3", + "name": "XamAppAllocateInterappWorkspaceEx", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1268, + "ordinal_hex": "0x000004F4", + "name": "XampKioskSetTestMock", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1269, + "ordinal_hex": "0x000004F5", + "name": "XamNetworkStatusGetInformation", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1270, + "ordinal_hex": "0x000004F6", + "name": "XamNetworkStatusAddAddress", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1271, + "ordinal_hex": "0x000004F7", + "name": "XamUserReadUserPreference", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1272, + "ordinal_hex": "0x000004F8", + "name": "XamUserWriteUserPreference", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1273, + "ordinal_hex": "0x000004F9", + "name": "XamShowFitnessClearUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1274, + "ordinal_hex": "0x000004FA", + "name": "XamFitnessClearAll", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1275, + "ordinal_hex": "0x000004FB", + "name": "XamFitnessGetPrivacySettings", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1276, + "ordinal_hex": "0x000004FC", + "name": "XamWaitForNSAL", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1277, + "ordinal_hex": "0x000004FD", + "name": "XamMarkInternalAccountTrustedOnConsole", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1278, + "ordinal_hex": "0x000004FE", + "name": "XamBackgroundDownloadNetworkStorageGetProgress", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1279, + "ordinal_hex": "0x000004FF", + "name": "XamCopyFile", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1280, + "ordinal_hex": "0x00000500", + "name": "XamMoveFile", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1281, + "ordinal_hex": "0x00000501", + "name": "XamDeleteFile", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1282, + "ordinal_hex": "0x00000502", + "name": "XamUserOverrideGlobalState", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1283, + "ordinal_hex": "0x00000503", + "name": "XamGetAdaptersCollection", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1284, + "ordinal_hex": "0x00000504", + "name": "XampKioskIsSimulationMode", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1285, + "ordinal_hex": "0x00000505", + "name": "XamIsUIThread", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1286, + "ordinal_hex": "0x00000506", + "name": "XamInputSendXenonButtonPress", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1287, + "ordinal_hex": "0x00000507", + "name": "XamDebugGetURISchemeCount", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1288, + "ordinal_hex": "0x00000508", + "name": "XamDebugGetURISchemeInfo", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1289, + "ordinal_hex": "0x00000509", + "name": "XamGetOnlineCountryFromLocale", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Locale", + "source_file": "src/xenia/kernel/xam/xam_locale.cc" + }, + { + "module": "xam", + "ordinal": 1290, + "ordinal_hex": "0x0000050A", + "name": "XTestOnlineIsConnectedToLive", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1291, + "ordinal_hex": "0x0000050B", + "name": "XamGetConsoleFriendlyName", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1292, + "ordinal_hex": "0x0000050C", + "name": "XamSetConsoleFriendlyName", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1293, + "ordinal_hex": "0x0000050D", + "name": "XamGetCountry", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1294, + "ordinal_hex": "0x0000050E", + "name": "XamPackageManagerGetFilePathW", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1295, + "ordinal_hex": "0x0000050F", + "name": "XamGetCurrentDemand", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1296, + "ordinal_hex": "0x00000510", + "name": "XamCompleteDemand", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1297, + "ordinal_hex": "0x00000511", + "name": "XamDemand", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1298, + "ordinal_hex": "0x00000512", + "name": "XamFormatSystemDateString", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1299, + "ordinal_hex": "0x00000513", + "name": "XamDebugGetBackURI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1300, + "ordinal_hex": "0x00000514", + "name": "XamIsCurrentTitleIptv", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1301, + "ordinal_hex": "0x00000515", + "name": "XamIsIptvEnabled", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1302, + "ordinal_hex": "0x00000516", + "name": "XamIsDvrRecording", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1303, + "ordinal_hex": "0x00000517", + "name": "XamIptvUninstall", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1304, + "ordinal_hex": "0x00000518", + "name": "XamGetDvrStorage", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1305, + "ordinal_hex": "0x00000519", + "name": "XamSetDvrStorage", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1306, + "ordinal_hex": "0x0000051A", + "name": "XamIptvGetServiceName", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1307, + "ordinal_hex": "0x0000051B", + "name": "XamNuiHudGetEngagedEnrollmentIndex", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1308, + "ordinal_hex": "0x0000051C", + "name": "XamProfileSetCachedWindowsLiveEmail", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1309, + "ordinal_hex": "0x0000051D", + "name": "XamProfileGetCachedWindowsLiveEmail", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1310, + "ordinal_hex": "0x0000051E", + "name": "XamUserResetSubscriptionType", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1311, + "ordinal_hex": "0x0000051F", + "name": "XamLrcSetTitlePort", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1312, + "ordinal_hex": "0x00000520", + "name": "XamLrcVerifyClientId", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1313, + "ordinal_hex": "0x00000521", + "name": "XamLrcEncryptDecryptTitleMessage", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1314, + "ordinal_hex": "0x00000522", + "name": "XamFitnessGetSyncStatus", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1315, + "ordinal_hex": "0x00000523", + "name": "XamFitnessInitializeForOneUser", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1316, + "ordinal_hex": "0x00000524", + "name": "XamFitnessGetSuggestedPrivacySettings", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1317, + "ordinal_hex": "0x00000525", + "name": "XampFitnessLetFireAndForgetsCatchUpInternal", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1318, + "ordinal_hex": "0x00000526", + "name": "XamInputGetFailedConnectionOrBind", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1319, + "ordinal_hex": "0x00000527", + "name": "XuiSceneIsInTransition", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1320, + "ordinal_hex": "0x00000528", + "name": "XamIsOnPrivateNetwork", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1321, + "ordinal_hex": "0x00000529", + "name": "XamInputSetMinMaxAuthDelay", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1322, + "ordinal_hex": "0x0000052A", + "name": "XamInputNonControllerGetRawEx", + "type": "function", + "status": "sketchy", + "tags": [ + "Sketchy" + ], + "category": "Input", + "source_file": "src/xenia/kernel/xam/xam_input.cc" + }, + { + "module": "xam", + "ordinal": 1323, + "ordinal_hex": "0x0000052B", + "name": "XamInputNonControllerSetRawEx", + "type": "function", + "status": "sketchy", + "tags": [ + "Sketchy" + ], + "category": "Input", + "source_file": "src/xenia/kernel/xam/xam_input.cc" + }, + { + "module": "xam", + "ordinal": 1324, + "ordinal_hex": "0x0000052C", + "name": "XamMarketplaceAcquireFreeContent", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1325, + "ordinal_hex": "0x0000052D", + "name": "XamGetClosedCaptioningState", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1326, + "ordinal_hex": "0x0000052E", + "name": "XamGetClosedCaptioningSettings", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1327, + "ordinal_hex": "0x0000052F", + "name": "XamSetClosedCaptioningState", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1328, + "ordinal_hex": "0x00000530", + "name": "XamLoaderGetLogonTitle", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1329, + "ordinal_hex": "0x00000531", + "name": "XamBeginDemand", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1330, + "ordinal_hex": "0x00000532", + "name": "XamGetErrorStringFromWebService", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1331, + "ordinal_hex": "0x00000533", + "name": "XamGetModernPresenceWorkspaceSize", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1332, + "ordinal_hex": "0x00000534", + "name": "XamGetModernPresence", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1333, + "ordinal_hex": "0x00000535", + "name": "XamGetSingleModernPresence", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1334, + "ordinal_hex": "0x00000536", + "name": "XamGetModernPresenceImageUrl", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1335, + "ordinal_hex": "0x00000537", + "name": "XGetSSLCertBypassEnabled", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1336, + "ordinal_hex": "0x00000538", + "name": "XamIsNetworkCaptivePortal", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1337, + "ordinal_hex": "0x00000539", + "name": "XamShowAndWaitForMessageBoxEx", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1339, + "ordinal_hex": "0x0000053B", + "name": "XamGetCurrencyFormat", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1340, + "ordinal_hex": "0x0000053C", + "name": "XamFormatCurrency", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1341, + "ordinal_hex": "0x0000053D", + "name": "XamReportTLSConnect", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1342, + "ordinal_hex": "0x0000053E", + "name": "XamGetXSTSTokenExpiryPeriodMS", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1343, + "ordinal_hex": "0x0000053F", + "name": "XamGetUserBalance", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1344, + "ordinal_hex": "0x00000540", + "name": "XamIsGuideDisabled", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1345, + "ordinal_hex": "0x00000541", + "name": "XampCallXAccountTransitionStoredValuePointsToCurrency", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1346, + "ordinal_hex": "0x00000542", + "name": "XampSetMockCallXAccountTransitionStoredValuePointsToCurrency", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1347, + "ordinal_hex": "0x00000543", + "name": "XamShowCsvTransitionUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1348, + "ordinal_hex": "0x00000544", + "name": "XamAskUserForCSVDrainagePermission", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1349, + "ordinal_hex": "0x00000545", + "name": "XamIsCSVDrainageSupported", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1388, + "ordinal_hex": "0x0000056C", + "name": "XamGetTLSConfig", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1399, + "ordinal_hex": "0x00000577", + "name": "XamGetServiceEndpoint", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1400, + "ordinal_hex": "0x00000578", + "name": "XamReminderGetItems", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1401, + "ordinal_hex": "0x00000579", + "name": "XamReminderClearItems", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1402, + "ordinal_hex": "0x0000057A", + "name": "XamReminderItemAdd", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1403, + "ordinal_hex": "0x0000057B", + "name": "XamReminderItemRemove", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1404, + "ordinal_hex": "0x0000057C", + "name": "XamReminderGetNextItem", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1405, + "ordinal_hex": "0x0000057D", + "name": "XamReminderGetModifiedTime", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1406, + "ordinal_hex": "0x0000057E", + "name": "XamReminderClearCache", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1407, + "ordinal_hex": "0x0000057F", + "name": "XamLrcKeyboardGetInput", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1408, + "ordinal_hex": "0x00000580", + "name": "XamLrcKeyboardGetRequiredBufferSize", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1409, + "ordinal_hex": "0x00000581", + "name": "XamLrcKeyboardRegister", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1410, + "ordinal_hex": "0x00000582", + "name": "XamLrcKeyboardUnregister", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1411, + "ordinal_hex": "0x00000583", + "name": "XamLrcKeyboardUpdateText", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1412, + "ordinal_hex": "0x00000584", + "name": "XamValidateCountry", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1413, + "ordinal_hex": "0x00000585", + "name": "XamGetOnlineCountryString", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Locale", + "source_file": "src/xenia/kernel/xam/xam_locale.cc" + }, + { + "module": "xam", + "ordinal": 1414, + "ordinal_hex": "0x00000586", + "name": "XamGetCountryString", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Locale", + "source_file": "src/xenia/kernel/xam/xam_locale.cc" + }, + { + "module": "xam", + "ordinal": 1415, + "ordinal_hex": "0x00000587", + "name": "XamGetLanguageString", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Locale", + "source_file": "src/xenia/kernel/xam/xam_locale.cc" + }, + { + "module": "xam", + "ordinal": 1416, + "ordinal_hex": "0x00000588", + "name": "XamGetLanguageLocaleString", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Locale", + "source_file": "src/xenia/kernel/xam/xam_locale.cc" + }, + { + "module": "xam", + "ordinal": 1417, + "ordinal_hex": "0x00000589", + "name": "XamGetOnlineLanguageAndCountryString", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Locale", + "source_file": "src/xenia/kernel/xam/xam_locale.cc" + }, + { + "module": "xam", + "ordinal": 1418, + "ordinal_hex": "0x0000058A", + "name": "XamGetLanguageLocaleFallbackString", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1419, + "ordinal_hex": "0x0000058B", + "name": "XamGetOnlineLanguageAndCountry", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1420, + "ordinal_hex": "0x0000058C", + "name": "XamGetLanguageTypeface", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1421, + "ordinal_hex": "0x0000058D", + "name": "XamGetLanguageTypefacePatch", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1422, + "ordinal_hex": "0x0000058E", + "name": "XamGetLocaleString", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Locale", + "source_file": "src/xenia/kernel/xam/xam_locale.cc" + }, + { + "module": "xam", + "ordinal": 1423, + "ordinal_hex": "0x0000058F", + "name": "XamGetLocaleFromOnlineCountry", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Locale", + "source_file": "src/xenia/kernel/xam/xam_locale.cc" + }, + { + "module": "xam", + "ordinal": 1424, + "ordinal_hex": "0x00000590", + "name": "XamOfflineTimerSetData", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1425, + "ordinal_hex": "0x00000591", + "name": "XamOfflineTimerResume", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1426, + "ordinal_hex": "0x00000592", + "name": "XamOfflineTimerSuspend", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1427, + "ordinal_hex": "0x00000593", + "name": "XamOfflineTimerIsRunning", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1428, + "ordinal_hex": "0x00000594", + "name": "XamOfflineTimerIsEnabled", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1429, + "ordinal_hex": "0x00000595", + "name": "XamOfflineTimerGetTimeRemaining", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1430, + "ordinal_hex": "0x00000596", + "name": "XamOfflineTimerGetContractData", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1431, + "ordinal_hex": "0x00000597", + "name": "XamOfflineTimerInitialize", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1432, + "ordinal_hex": "0x00000598", + "name": "XamOfflineTimerGetData", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1433, + "ordinal_hex": "0x00000599", + "name": "XamPlayToRegister", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1434, + "ordinal_hex": "0x0000059A", + "name": "XamPlayToReportPlaybackState", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1435, + "ordinal_hex": "0x0000059B", + "name": "XamPlayToUnregister", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1436, + "ordinal_hex": "0x0000059C", + "name": "XamShowTFAUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1437, + "ordinal_hex": "0x0000059D", + "name": "OnReconnect", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1438, + "ordinal_hex": "0x0000059E", + "name": "XamGetOnlineCountryFeatures", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1439, + "ordinal_hex": "0x0000059F", + "name": "XamLogLocalizationEtx", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1440, + "ordinal_hex": "0x000005A0", + "name": "XampXAuthIsLocalSocketAllowed", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1441, + "ordinal_hex": "0x000005A1", + "name": "XamPlayToGetRequest", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1442, + "ordinal_hex": "0x000005A2", + "name": "XamPlayToCancelGetRequest", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1443, + "ordinal_hex": "0x000005A3", + "name": "XamPlayToCompleteRequest", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1444, + "ordinal_hex": "0x000005A4", + "name": "XamFitnessGetTitleSummaries", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1445, + "ordinal_hex": "0x000005A5", + "name": "XamFitnessGetTitleSummary", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1446, + "ordinal_hex": "0x000005A6", + "name": "XamOfflineTimerShutdown", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1447, + "ordinal_hex": "0x000005A7", + "name": "XamFitnessContainsFitnessData", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1448, + "ordinal_hex": "0x000005A8", + "name": "XamGetLanguageFromOnlineLanguage", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Locale", + "source_file": "src/xenia/kernel/xam/xam_locale.cc" + }, + { + "module": "xam", + "ordinal": 1449, + "ordinal_hex": "0x000005A9", + "name": "XamGetOnlineLanguageString", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Locale", + "source_file": "src/xenia/kernel/xam/xam_locale.cc" + }, + { + "module": "xam", + "ordinal": 1450, + "ordinal_hex": "0x000005AA", + "name": "XamGetCountryFromOnlineCountry", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Locale", + "source_file": "src/xenia/kernel/xam/xam_locale.cc" + }, + { + "module": "xam", + "ordinal": 1495, + "ordinal_hex": "0x000005D7", + "name": "XamGetLocaleEx", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Locale", + "source_file": "src/xenia/kernel/xam/xam_locale.cc" + }, + { + "module": "xam", + "ordinal": 1496, + "ordinal_hex": "0x000005D8", + "name": "XamOfflineTimerForceQuery", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1497, + "ordinal_hex": "0x000005D9", + "name": "XamShowCreateProfileUIEx", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "UserProfiles", + "source_file": "src/xenia/kernel/xam/xam_ui.cc" + }, + { + "module": "xam", + "ordinal": 1498, + "ordinal_hex": "0x000005DA", + "name": "XTLGetLanguageV2", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1499, + "ordinal_hex": "0x000005DB", + "name": "XTLGetLocaleV1", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1500, + "ordinal_hex": "0x000005DC", + "name": "XamAvatarInitialize", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Avatars", + "source_file": "src/xenia/kernel/xam/xam_avatar.cc" + }, + { + "module": "xam", + "ordinal": 1501, + "ordinal_hex": "0x000005DD", + "name": "XamAvatarShutdown", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Avatars", + "source_file": "src/xenia/kernel/xam/xam_avatar.cc" + }, + { + "module": "xam", + "ordinal": 1502, + "ordinal_hex": "0x000005DE", + "name": "XamAvatarGetManifestLocalUser", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Avatars", + "source_file": "src/xenia/kernel/xam/xam_avatar.cc" + }, + { + "module": "xam", + "ordinal": 1503, + "ordinal_hex": "0x000005DF", + "name": "XamAvatarGetManifestsByXuid", + "type": "function", + "status": "stub", + "tags": [ + "Stub", + "Avatars", + "Stub" + ], + "category": "Avatars", + "source_file": "src/xenia/kernel/xam/xam_avatar.cc" + }, + { + "module": "xam", + "ordinal": 1504, + "ordinal_hex": "0x000005E0", + "name": "XamAvatarGetAssetsResultSize", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1505, + "ordinal_hex": "0x000005E1", + "name": "XamAvatarGetAssets", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Avatars", + "source_file": "src/xenia/kernel/xam/xam_avatar.cc" + }, + { + "module": "xam", + "ordinal": 1506, + "ordinal_hex": "0x000005E2", + "name": "XamAvatarGenerateMipMaps", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Avatars", + "source_file": "src/xenia/kernel/xam/xam_avatar.cc" + }, + { + "module": "xam", + "ordinal": 1507, + "ordinal_hex": "0x000005E3", + "name": "XamAvatarSetCustomAsset", + "type": "function", + "status": "stub", + "tags": [ + "Stub", + "ernel_state" + ], + "category": "Avatars", + "source_file": "src/xenia/kernel/xam/xam_avatar.cc" + }, + { + "module": "xam", + "ordinal": 1508, + "ordinal_hex": "0x000005E4", + "name": "XamAvatarSetManifest", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Avatars", + "source_file": "src/xenia/kernel/xam/xam_avatar.cc" + }, + { + "module": "xam", + "ordinal": 1509, + "ordinal_hex": "0x000005E5", + "name": "EnumerateMediaObjects", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_enum.cc" + }, + { + "module": "xam", + "ordinal": 1510, + "ordinal_hex": "0x000005E6", + "name": "EnumerateMediaObjects_", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_enum.cc" + }, + { + "module": "xam", + "ordinal": 1511, + "ordinal_hex": "0x000005E7", + "name": "XamAvatarLoadAnimation", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Avatars", + "source_file": "src/xenia/kernel/xam/xam_avatar.cc" + }, + { + "module": "xam", + "ordinal": 1512, + "ordinal_hex": "0x000005E8", + "name": "XamAvatarBeginEnumAssets", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Avatars", + "source_file": "src/xenia/kernel/xam/xam_avatar.cc" + }, + { + "module": "xam", + "ordinal": 1513, + "ordinal_hex": "0x000005E9", + "name": "XamAvatarEndEnumAssets", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Avatars", + "source_file": "src/xenia/kernel/xam/xam_avatar.cc" + }, + { + "module": "xam", + "ordinal": 1514, + "ordinal_hex": "0x000005EA", + "name": "XamAvatarEnumAssets", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Avatars", + "source_file": "src/xenia/kernel/xam/xam_avatar.cc" + }, + { + "module": "xam", + "ordinal": 1515, + "ordinal_hex": "0x000005EB", + "name": "XamAvatarGetMetadataRandom", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Avatars", + "source_file": "src/xenia/kernel/xam/xam_avatar.cc" + }, + { + "module": "xam", + "ordinal": 1516, + "ordinal_hex": "0x000005EC", + "name": "EnumerateMediaObjects_0", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_enum.cc" + }, + { + "module": "xam", + "ordinal": 1517, + "ordinal_hex": "0x000005ED", + "name": "EnumerateMediaObjects_1", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_enum.cc" + }, + { + "module": "xam", + "ordinal": 1518, + "ordinal_hex": "0x000005EE", + "name": "XamAvatarGetMetadataSignedOutProfileCount", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Avatars", + "source_file": "src/xenia/kernel/xam/xam_avatar.cc" + }, + { + "module": "xam", + "ordinal": 1519, + "ordinal_hex": "0x000005EF", + "name": "XamAvatarGetMetadataSignedOutProfile", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Avatars", + "source_file": "src/xenia/kernel/xam/xam_avatar.cc" + }, + { + "module": "xam", + "ordinal": 1520, + "ordinal_hex": "0x000005F0", + "name": "EnumerateMediaObjects_2", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1521, + "ordinal_hex": "0x000005F1", + "name": "XamAvatarManifestGetBodyType", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Avatars", + "source_file": "src/xenia/kernel/xam/xam_avatar.cc" + }, + { + "module": "xam", + "ordinal": 1522, + "ordinal_hex": "0x000005F2", + "name": "XamAvatarGetInstrumentation", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Avatars", + "source_file": "src/xenia/kernel/xam/xam_avatar.cc" + }, + { + "module": "xam", + "ordinal": 1523, + "ordinal_hex": "0x000005F3", + "name": "XamAvatarGetAssetIcon", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Avatars", + "source_file": "src/xenia/kernel/xam/xam_avatar.cc" + }, + { + "module": "xam", + "ordinal": 1524, + "ordinal_hex": "0x000005F4", + "name": "XamAvatarWearNow", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Avatars", + "source_file": "src/xenia/kernel/xam/xam_avatar.cc" + }, + { + "module": "xam", + "ordinal": 1525, + "ordinal_hex": "0x000005F5", + "name": "XamAvatarGetAssetBinary", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Avatars", + "source_file": "src/xenia/kernel/xam/xam_avatar.cc" + }, + { + "module": "xam", + "ordinal": 1526, + "ordinal_hex": "0x000005F6", + "name": "XamAvatarReinstallAwardedAsset", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Avatars", + "source_file": "src/xenia/kernel/xam/xam_avatar.cc" + }, + { + "module": "xam", + "ordinal": 1527, + "ordinal_hex": "0x000005F7", + "name": "XamAvatarGetInstalledAssetPackageDescription", + "type": "function", + "status": "sketchy", + "tags": [ + "Sketchy" + ], + "category": "Avatars", + "source_file": "src/xenia/kernel/xam/xam_avatar.cc" + }, + { + "module": "xam", + "ordinal": 1528, + "ordinal_hex": "0x000005F8", + "name": "XamAvatarSetMocks", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Avatars", + "source_file": "src/xenia/kernel/xam/xam_avatar.cc" + }, + { + "module": "xam", + "ordinal": 1529, + "ordinal_hex": "0x000005F9", + "name": "XamLrcKeyboardValidateTextChange", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1530, + "ordinal_hex": "0x000005FA", + "name": "XamLrcKeyboardApplyTextChange", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1531, + "ordinal_hex": "0x000005FB", + "name": "XamLrcLogSessionSummary", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1532, + "ordinal_hex": "0x000005FC", + "name": "XamLrcLogError", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1550, + "ordinal_hex": "0x0000060E", + "name": "XamContentMountInstalledGame", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1551, + "ordinal_hex": "0x0000060F", + "name": "XamContentIsGameInstalledToHDD", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1552, + "ordinal_hex": "0x00000610", + "name": "XamContentQueryLicenseInternal", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1553, + "ordinal_hex": "0x00000611", + "name": "XamContentGetDeviceVolumePath", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Content", + "source_file": "src/xenia/kernel/xam/xam_content.cc" + }, + { + "module": "xam", + "ordinal": 1554, + "ordinal_hex": "0x00000612", + "name": "XamContentDeviceCheckUpdates", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1555, + "ordinal_hex": "0x00000613", + "name": "XamContentGetHeaderInternal", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1556, + "ordinal_hex": "0x00000614", + "name": "XamNetworkStorageGetNetworkDevice", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1557, + "ordinal_hex": "0x00000615", + "name": "XamNetworkStorageDeviceHasCacheFile", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1558, + "ordinal_hex": "0x00000616", + "name": "XamNetworkStorageCreateCacheOnDevice", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1559, + "ordinal_hex": "0x00000617", + "name": "XamNetworkStorageDeleteCacheOnDevice", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1560, + "ordinal_hex": "0x00000618", + "name": "XamNetworkStorageGetStatus", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1561, + "ordinal_hex": "0x00000619", + "name": "XamNetworkStorageIsSupportedContentType", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1562, + "ordinal_hex": "0x0000061A", + "name": "XamNetworkStorageSetTestMock", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1563, + "ordinal_hex": "0x0000061B", + "name": "XamNetworkStorageGetLastSyncTime", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1564, + "ordinal_hex": "0x0000061C", + "name": "XamShowNetworkStorageSyncUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1565, + "ordinal_hex": "0x0000061D", + "name": "XamUserIsLogonPreviewModeEnabled", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1566, + "ordinal_hex": "0x0000061E", + "name": "XamUserLockLogonPreviewMode", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1567, + "ordinal_hex": "0x0000061F", + "name": "XamUserUnlockLogonPreviewMode", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1568, + "ordinal_hex": "0x00000620", + "name": "XamNetworkStorageIsUserInSync", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1569, + "ordinal_hex": "0x00000621", + "name": "XamNetworkStorageSetUserInSync", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1570, + "ordinal_hex": "0x00000622", + "name": "XamNetworkStorageOnSigninChanged", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1571, + "ordinal_hex": "0x00000623", + "name": "XamNetworkStorageSignInTestMock", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1572, + "ordinal_hex": "0x00000624", + "name": "XamShowFofUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1573, + "ordinal_hex": "0x00000625", + "name": "CompareFileTime", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1574, + "ordinal_hex": "0x00000626", + "name": "SetFileTime", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1575, + "ordinal_hex": "0x00000627", + "name": "XamNetworkStorageGetTitleProperties", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1576, + "ordinal_hex": "0x00000628", + "name": "XamNetworkStorageLockFile", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1577, + "ordinal_hex": "0x00000629", + "name": "XamNetworkStorageUserHasPrivilege", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1578, + "ordinal_hex": "0x0000062A", + "name": "XamNetworkStorageIsTitleExempt", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1579, + "ordinal_hex": "0x0000062B", + "name": "XamContentExistsOnDeviceInternal", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1580, + "ordinal_hex": "0x0000062C", + "name": "XamNetworkStorageGetBackingDevice", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1581, + "ordinal_hex": "0x0000062D", + "name": "XamNetworkStorageIsEnabledInLiveHive", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1582, + "ordinal_hex": "0x0000062E", + "name": "XamNetworkStorageIsCheckingSyncStates", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1583, + "ordinal_hex": "0x0000062F", + "name": "XamNetworkStorageUserNeedsToSync", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1584, + "ordinal_hex": "0x00000630", + "name": "XamNetworkStorageGetUserNetworkSyncTime", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1585, + "ordinal_hex": "0x00000631", + "name": "XamNetworkStorageGetUserProperties", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1586, + "ordinal_hex": "0x00000632", + "name": "XamNetworkStorageAppLauncherLaunchIfRunning", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1587, + "ordinal_hex": "0x00000633", + "name": "XamNetworkStorageSetTitleProperties", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1588, + "ordinal_hex": "0x00000634", + "name": "XamNetworkStorageGetUserLastError", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1589, + "ordinal_hex": "0x00000635", + "name": "XamNetworkStorageCheckOutTitle", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1590, + "ordinal_hex": "0x00000636", + "name": "XamNetworkStorageShouldHideFromTitle", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1591, + "ordinal_hex": "0x00000637", + "name": "XamNetworkStorageOnUserSyncChange", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1592, + "ordinal_hex": "0x00000638", + "name": "XamNetworkStorageHasUserEnabledStorage", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1593, + "ordinal_hex": "0x00000639", + "name": "XamContentGetLocalizedDeviceData", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1600, + "ordinal_hex": "0x00000640", + "name": "XamPackageManagerFindPackageContainingIndexedXEX", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1601, + "ordinal_hex": "0x00000641", + "name": "XamPackageManagerReinitialize", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1602, + "ordinal_hex": "0x00000642", + "name": "XamPackageManagerGetAuthoritativeManifestVersion", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1603, + "ordinal_hex": "0x00000643", + "name": "XamGetCurrentSystemOnlineManifestRevision", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1604, + "ordinal_hex": "0x00000644", + "name": "XamPackageManagerDeleteExtendedPartition", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1605, + "ordinal_hex": "0x00000645", + "name": "XamPackageManagerHasExtendedPartition", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1606, + "ordinal_hex": "0x00000646", + "name": "XamPackageManagerGetExperienceMode", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1607, + "ordinal_hex": "0x00000647", + "name": "XamPackageManagerGetFeatureRequiresUpdateStrings", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1608, + "ordinal_hex": "0x00000648", + "name": "XamPackageManagerGetFileSize", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1609, + "ordinal_hex": "0x00000649", + "name": "XampDemandUpdateGetAttributes", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1610, + "ordinal_hex": "0x0000064A", + "name": "XampDemandUpdateGetExtendedAttributes", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1611, + "ordinal_hex": "0x0000064B", + "name": "XampDemandUpdateGetInstance", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1612, + "ordinal_hex": "0x0000064C", + "name": "XampDemandUpdateSetRefreshTestFlags", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1613, + "ordinal_hex": "0x0000064D", + "name": "XampDemandUpdateIsRefreshTestFlagSet", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1614, + "ordinal_hex": "0x0000064E", + "name": "XampDemandUpdateGetManifestLocalPath", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1615, + "ordinal_hex": "0x0000064F", + "name": "XampDemandUpdateRefreshManifest", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1616, + "ordinal_hex": "0x00000650", + "name": "XdfInitialize", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1617, + "ordinal_hex": "0x00000651", + "name": "XdfShutdown", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1618, + "ordinal_hex": "0x00000652", + "name": "XdfGetExpectedDownloadSize", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1619, + "ordinal_hex": "0x00000653", + "name": "XdfGetItem", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1620, + "ordinal_hex": "0x00000654", + "name": "XdfCacheItem", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1621, + "ordinal_hex": "0x00000655", + "name": "XdfLoadXexFromCache", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1622, + "ordinal_hex": "0x00000656", + "name": "XdfLoadXex", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1623, + "ordinal_hex": "0x00000657", + "name": "XdfCancelRequest", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1624, + "ordinal_hex": "0x00000658", + "name": "XdfResumeDelayedItem", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1625, + "ordinal_hex": "0x00000659", + "name": "XdfLaunchNewImageFromCache", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1626, + "ordinal_hex": "0x0000065A", + "name": "XampDemandUpdateRefreshManifestDuringLogon", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1627, + "ordinal_hex": "0x0000065B", + "name": "XampDemandUpdateCheckOnlineManifestChanged", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1628, + "ordinal_hex": "0x0000065C", + "name": "XampDemandUpdateRunCacheCleaner", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1669, + "ordinal_hex": "0x00000685", + "name": "XamUpdateGetTitleUpdateSizeThreshold", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1670, + "ordinal_hex": "0x00000686", + "name": "XamXStudioRequest", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1671, + "ordinal_hex": "0x00000687", + "name": "XamNotifyDelayUIInternal", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1700, + "ordinal_hex": "0x000006A4", + "name": "XamShowAvatarMiniCreatorUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1701, + "ordinal_hex": "0x000006A5", + "name": "XamShowGoldUpgradeUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1702, + "ordinal_hex": "0x000006A6", + "name": "XamResumeUpdaterUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1703, + "ordinal_hex": "0x000006A7", + "name": "XamShowDirectAcquireUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1704, + "ordinal_hex": "0x000006A8", + "name": "XamShowPaymentOptionsUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1705, + "ordinal_hex": "0x000006A9", + "name": "XamShowMultiplayerUpgradeUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1800, + "ordinal_hex": "0x00000708", + "name": "XamGetLiveHiveValueA", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1801, + "ordinal_hex": "0x00000709", + "name": "XamGetLiveHiveValueW", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1802, + "ordinal_hex": "0x0000070A", + "name": "XamGetLiveHiveValueDuringLogonAttemptA", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1803, + "ordinal_hex": "0x0000070B", + "name": "XamSetUserPresetWindowsLiveCreds", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1804, + "ordinal_hex": "0x0000070C", + "name": "XamQueryLiveHiveA", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1805, + "ordinal_hex": "0x0000070D", + "name": "XamQueryLiveHiveW", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_info.cc" + }, + { + "module": "xam", + "ordinal": 1806, + "ordinal_hex": "0x0000070E", + "name": "XamGetLiveHiveValueDuringLogonAttemptExA", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1807, + "ordinal_hex": "0x0000070F", + "name": "XamGetUserPresetWindowsLiveCreds", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1808, + "ordinal_hex": "0x00000710", + "name": "XamGetUserNeedTFA", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1809, + "ordinal_hex": "0x00000711", + "name": "XamSetUserNeedTFA", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1810, + "ordinal_hex": "0x00000712", + "name": "XamGetUserInMemoryWindowsLiveCreds", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1900, + "ordinal_hex": "0x0000076C", + "name": "XamDownloadMarketplaceStoresList", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1901, + "ordinal_hex": "0x0000076D", + "name": "XamGetStoreFront", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1902, + "ordinal_hex": "0x0000076E", + "name": "XamSetStagingMode", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1903, + "ordinal_hex": "0x0000076F", + "name": "XamGetStagingMode", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_info.cc" + }, + { + "module": "xam", + "ordinal": 1904, + "ordinal_hex": "0x00000770", + "name": "XamAppGetSessionId", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1905, + "ordinal_hex": "0x00000771", + "name": "XamAccountRecoveryRecoverAllProfileData", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 1906, + "ordinal_hex": "0x00000772", + "name": "XamAccountRecoveryGetProgress", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2000, + "ordinal_hex": "0x000007D0", + "name": "XamDoesOmniNeedConfiguration", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_info.cc" + }, + { + "module": "xam", + "ordinal": 2001, + "ordinal_hex": "0x000007D1", + "name": "XamFirstRunExperienceShouldRun", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_info.cc" + }, + { + "module": "xam", + "ordinal": 2002, + "ordinal_hex": "0x000007D2", + "name": "GetProcessHeap", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2003, + "ordinal_hex": "0x000007D3", + "name": "UnhandledExceptionFilter", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2004, + "ordinal_hex": "0x000007D4", + "name": "SetUnhandledExceptionFilter", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2005, + "ordinal_hex": "0x000007D5", + "name": "XamIsOptionalMediaUpdateInstalled", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2006, + "ordinal_hex": "0x000007D6", + "name": "XamShowOptionalMediaUpdateRequiredUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2007, + "ordinal_hex": "0x000007D7", + "name": "XamShowOptionalMediaUpdateRequiredUIEx", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2008, + "ordinal_hex": "0x000007D8", + "name": "XamShowFirstRunWelcomeUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2009, + "ordinal_hex": "0x000007D9", + "name": "XamTaskCreateQueueEx", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2010, + "ordinal_hex": "0x000007DA", + "name": "XamSetDashBackstackData", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2011, + "ordinal_hex": "0x000007DB", + "name": "XamLaunchAvatarEditor", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2012, + "ordinal_hex": "0x000007DC", + "name": "XamGetDashBackstackData", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_info.cc" + }, + { + "module": "xam", + "ordinal": 2013, + "ordinal_hex": "0x000007DD", + "name": "XamGetDashBackstackNodesCount", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2014, + "ordinal_hex": "0x000007DE", + "name": "XamSetLastActiveUserData", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2015, + "ordinal_hex": "0x000007DF", + "name": "XamGetLastActiveUserData", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2016, + "ordinal_hex": "0x000007E0", + "name": "XamSetActiveDashAppInfo", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_info.cc" + }, + { + "module": "xam", + "ordinal": 2017, + "ordinal_hex": "0x000007E1", + "name": "XamGetActiveDashAppInfo", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_info.cc" + }, + { + "module": "xam", + "ordinal": 2018, + "ordinal_hex": "0x000007E2", + "name": "XamLoaderRegisterLaunchRequestCallback", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2019, + "ordinal_hex": "0x000007E3", + "name": "XamLoadExtraAVCodecs2", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2020, + "ordinal_hex": "0x000007E4", + "name": "XamUnloadExtraAVCodecs2", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2050, + "ordinal_hex": "0x00000802", + "name": "XamUserCreateAvatarAssetEnumerator", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2051, + "ordinal_hex": "0x00000803", + "name": "XamInitializeGameTileCache", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2052, + "ordinal_hex": "0x00000804", + "name": "XamDestroyGameTileCache", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2053, + "ordinal_hex": "0x00000805", + "name": "XamReadGameTileImage", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2054, + "ordinal_hex": "0x00000806", + "name": "XamShouldThrottleAccountInfoCall", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2055, + "ordinal_hex": "0x00000807", + "name": "XuiClassDerivesFrom", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2056, + "ordinal_hex": "0x00000808", + "name": "XuiFreeVisuals", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2057, + "ordinal_hex": "0x00000809", + "name": "XuiGetBaseClass", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2058, + "ordinal_hex": "0x0000080A", + "name": "XuiLoadVisualFromBinary", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2059, + "ordinal_hex": "0x0000080B", + "name": "XuiResourceGetBuffer", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2060, + "ordinal_hex": "0x0000080C", + "name": "XuiResourceGetTotalSize", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2061, + "ordinal_hex": "0x0000080D", + "name": "XuiElementGetUserData", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2062, + "ordinal_hex": "0x0000080E", + "name": "XuiElementSetUserData", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2063, + "ordinal_hex": "0x0000080F", + "name": "XuiTabSceneGetCount", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2064, + "ordinal_hex": "0x00000810", + "name": "XuiSliderGetStep", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2065, + "ordinal_hex": "0x00000811", + "name": "XuiSliderSetStep", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2066, + "ordinal_hex": "0x00000812", + "name": "XuiProgressBarGetRange", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2067, + "ordinal_hex": "0x00000813", + "name": "XuiElementSetHittable", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2068, + "ordinal_hex": "0x00000814", + "name": "XuiElementPlayNamedFrames", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2069, + "ordinal_hex": "0x00000815", + "name": "XuiElementGetPivot", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2070, + "ordinal_hex": "0x00000816", + "name": "XuiElementGetPrev", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2071, + "ordinal_hex": "0x00000817", + "name": "XuiElementGetScale", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2072, + "ordinal_hex": "0x00000818", + "name": "XuiElementSetPivot", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2073, + "ordinal_hex": "0x00000819", + "name": "XuiElementSetRotation", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2074, + "ordinal_hex": "0x0000081A", + "name": "XuiElementSetScale", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2075, + "ordinal_hex": "0x0000081B", + "name": "XuiControlWantsUnfocusedInput", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2076, + "ordinal_hex": "0x0000081C", + "name": "XuiResourceOpenNoLoc", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2077, + "ordinal_hex": "0x0000081D", + "name": "XuiResourceReleasePackage", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2078, + "ordinal_hex": "0x0000081E", + "name": "XuiResourceGetPackageEntryInfo", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2079, + "ordinal_hex": "0x0000081F", + "name": "XuiResourceGetPackageEntryCount", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2080, + "ordinal_hex": "0x00000820", + "name": "XuiResourceOpenPackage", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2081, + "ordinal_hex": "0x00000821", + "name": "XamCodeCoverageFileOpen", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2082, + "ordinal_hex": "0x00000822", + "name": "XamCodeCoverageFileClose", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2083, + "ordinal_hex": "0x00000823", + "name": "XamCodeCoverageFileLseek", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2084, + "ordinal_hex": "0x00000824", + "name": "XamCodeCoverageFileRead", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2085, + "ordinal_hex": "0x00000825", + "name": "XamCodeCoverageFileWrite", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2086, + "ordinal_hex": "0x00000826", + "name": "Refresh_1", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2087, + "ordinal_hex": "0x00000827", + "name": "XampHeapGetInfo", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2088, + "ordinal_hex": "0x00000828", + "name": "XampHeapGetCount", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2089, + "ordinal_hex": "0x00000829", + "name": "XamShowPamUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2090, + "ordinal_hex": "0x0000082A", + "name": "XuiElementLayoutTree", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2091, + "ordinal_hex": "0x0000082B", + "name": "XamRegisterScreenSaverCallback", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2092, + "ordinal_hex": "0x0000082C", + "name": "XUIElementPropVal_SetInt", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2093, + "ordinal_hex": "0x0000082D", + "name": "XUIElementPropVal_SetFloat", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2094, + "ordinal_hex": "0x0000082E", + "name": "XuiObjectGetPropertyDef", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2095, + "ordinal_hex": "0x0000082F", + "name": "XuiRenderGetDevice", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2096, + "ordinal_hex": "0x00000830", + "name": "XuiRenderRestoreState", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2097, + "ordinal_hex": "0x00000831", + "name": "XuiElementGetFullXForm", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2098, + "ordinal_hex": "0x00000832", + "name": "XuiRenderGetViewTransform", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2099, + "ordinal_hex": "0x00000833", + "name": "XuiRenderGetColorSpace", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2100, + "ordinal_hex": "0x00000834", + "name": "XamPngEncode", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2101, + "ordinal_hex": "0x00000835", + "name": "XamPngDecode", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2102, + "ordinal_hex": "0x00000836", + "name": "XamPngEncodeEx", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2103, + "ordinal_hex": "0x00000837", + "name": "XuiTextElementMeasureText", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2104, + "ordinal_hex": "0x00000838", + "name": "XamLoaderShouldConfirmReboot", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2105, + "ordinal_hex": "0x00000839", + "name": "XamLoaderRebootToDash", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2106, + "ordinal_hex": "0x0000083A", + "name": "XamNuiHudGetEngagedTrackingID", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_nui.cc" + }, + { + "module": "xam", + "ordinal": 2107, + "ordinal_hex": "0x0000083B", + "name": "XamLoaderLaunchTitleForReason", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2108, + "ordinal_hex": "0x0000083C", + "name": "XamNuiHudSetEngagedTrackingID", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_nui.cc" + }, + { + "module": "xam", + "ordinal": 2109, + "ordinal_hex": "0x0000083D", + "name": "XuiBrushGetTexture", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2110, + "ordinal_hex": "0x0000083E", + "name": "XamSetupTexture", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2111, + "ordinal_hex": "0x0000083F", + "name": "XuiElementGetDescendantById", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2112, + "ordinal_hex": "0x00000840", + "name": "XamLoaderIsKinectUIPreferredForLogonTitle", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2113, + "ordinal_hex": "0x00000841", + "name": "XamSetupCameraPreviewStuff", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2114, + "ordinal_hex": "0x00000842", + "name": "XamReleaseCameraPreviewStuff", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2115, + "ordinal_hex": "0x00000843", + "name": "XamRenderCameraPreviewStuff", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2120, + "ordinal_hex": "0x00000848", + "name": "XamAccountRecoveryGetSetTitleSyncTime", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2121, + "ordinal_hex": "0x00000849", + "name": "XamReadBiometricData", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2122, + "ordinal_hex": "0x0000084A", + "name": "XamWriteBiometricData", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2123, + "ordinal_hex": "0x0000084B", + "name": "XamD3DResourceDescriptorCreate", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2124, + "ordinal_hex": "0x0000084C", + "name": "XamD3DResourceDescriptorAddRef", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2125, + "ordinal_hex": "0x0000084D", + "name": "XamD3DResourceDescriptorRelease", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2126, + "ordinal_hex": "0x0000084E", + "name": "XamD3DResourceAddRef", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2127, + "ordinal_hex": "0x0000084F", + "name": "XamD3DResourceSet", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2128, + "ordinal_hex": "0x00000850", + "name": "XamD3DResourceIsBusy", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2129, + "ordinal_hex": "0x00000851", + "name": "XamD3DResourceRelease", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2130, + "ordinal_hex": "0x00000852", + "name": "ControlPackGetCursorPosition", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2131, + "ordinal_hex": "0x00000853", + "name": "ControlPackShouldShowCursor", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2136, + "ordinal_hex": "0x00000858", + "name": "XamFlushAgraTemperatureReport", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2137, + "ordinal_hex": "0x00000859", + "name": "XamNatalDeviceAudioCalibrate", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2138, + "ordinal_hex": "0x0000085A", + "name": "XamNuiIdentityGetEnrollmentInfo", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2139, + "ordinal_hex": "0x0000085B", + "name": "XamNuiIdentityUnenroll", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2140, + "ordinal_hex": "0x0000085C", + "name": "XamNuiIdentityGetColorTexture", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2141, + "ordinal_hex": "0x0000085D", + "name": "XamReportKinectSettingsChangedEvent", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2142, + "ordinal_hex": "0x0000085E", + "name": "XamNuiEnableChatMic", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2143, + "ordinal_hex": "0x0000085F", + "name": "XamNuiIsChatMicEnabled", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_nui.cc" + }, + { + "module": "xam", + "ordinal": 2144, + "ordinal_hex": "0x00000860", + "name": "XamNuiGetDepthCalibration", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_nui.cc" + }, + { + "module": "xam", + "ordinal": 2145, + "ordinal_hex": "0x00000861", + "name": "XamNuiStoreDepthCalibration", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2146, + "ordinal_hex": "0x00000862", + "name": "XamUserNuiIsBiometricEnabled", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2147, + "ordinal_hex": "0x00000863", + "name": "XamUserNuiEnableBiometric", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_nui.cc" + }, + { + "module": "xam", + "ordinal": 2148, + "ordinal_hex": "0x00000864", + "name": "XamNuiCameraSetFlags", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_nui.cc" + }, + { + "module": "xam", + "ordinal": 2149, + "ordinal_hex": "0x00000865", + "name": "XamNuiCameraRememberFloor", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2150, + "ordinal_hex": "0x00000866", + "name": "XamUserNuiGetUserIndexForBind", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_nui.cc" + }, + { + "module": "xam", + "ordinal": 2151, + "ordinal_hex": "0x00000867", + "name": "XamUserNuiGetUserIndexForSignin", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_nui.cc" + }, + { + "module": "xam", + "ordinal": 2152, + "ordinal_hex": "0x00000868", + "name": "XamUserNuiBind", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2153, + "ordinal_hex": "0x00000869", + "name": "XamUserNuiGetUserIndex", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_nui.cc" + }, + { + "module": "xam", + "ordinal": 2154, + "ordinal_hex": "0x0000086A", + "name": "XamUserNuiGetEnrollmentIndex", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2155, + "ordinal_hex": "0x0000086B", + "name": "XamUserNuiUnbind", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2156, + "ordinal_hex": "0x0000086C", + "name": "XamNuiIdentityGetQualityFlagsMessage", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2157, + "ordinal_hex": "0x0000086D", + "name": "XamNuiCameraTiltSetCallback", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2158, + "ordinal_hex": "0x0000086E", + "name": "XamNuiHudIsEnabled", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_nui.cc" + }, + { + "module": "xam", + "ordinal": 2159, + "ordinal_hex": "0x0000086F", + "name": "XamNuiCameraGetTiltControllerType", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_nui.cc" + }, + { + "module": "xam", + "ordinal": 2160, + "ordinal_hex": "0x00000870", + "name": "XamNuiCameraTiltGetStatus", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_nui.cc" + }, + { + "module": "xam", + "ordinal": 2161, + "ordinal_hex": "0x00000871", + "name": "XamNuiIdentityGetQualityFlags", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2162, + "ordinal_hex": "0x00000872", + "name": "XamNuiIdentityEnrollForSignIn", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_nui.cc" + }, + { + "module": "xam", + "ordinal": 2163, + "ordinal_hex": "0x00000873", + "name": "XamNuiIdentityGetSessionId", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_nui.cc" + }, + { + "module": "xam", + "ordinal": 2164, + "ordinal_hex": "0x00000874", + "name": "XamNuiIdentityIdentifyWithBiometric", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2165, + "ordinal_hex": "0x00000875", + "name": "ControlPackGetHandleManager", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2166, + "ordinal_hex": "0x00000876", + "name": "XamEnableNuiAutomation", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2167, + "ordinal_hex": "0x00000877", + "name": "XamNuiGetSystemGestureControl", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2168, + "ordinal_hex": "0x00000878", + "name": "XamGetPasscodeKeyFromVirtualKey", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2169, + "ordinal_hex": "0x00000879", + "name": "XamEnableNatalPlayback", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2170, + "ordinal_hex": "0x0000087A", + "name": "XamIsNuiAutomationEnabled", + "type": "function", + "status": "stub", + "tags": [ + "Stub", + "HighFrequency" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_nui.cc" + }, + { + "module": "xam", + "ordinal": 2171, + "ordinal_hex": "0x0000087B", + "name": "XamIsNatalPlaybackEnabled", + "type": "function", + "status": "stub", + "tags": [ + "Stub", + "HighFrequency" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_nui.cc" + }, + { + "module": "xam", + "ordinal": 2172, + "ordinal_hex": "0x0000087C", + "name": "XamNuiHudInterpretFrame", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2173, + "ordinal_hex": "0x0000087D", + "name": "XamNuiHudEnableInputFilter", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2174, + "ordinal_hex": "0x0000087E", + "name": "ControlpackNuiCursorSetTrackingId", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2175, + "ordinal_hex": "0x0000087F", + "name": "XamNuiHudGetInitializeFlags", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_nui.cc" + }, + { + "module": "xam", + "ordinal": 2176, + "ordinal_hex": "0x00000880", + "name": "XamNuiCameraElevationSetAngle", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2177, + "ordinal_hex": "0x00000881", + "name": "XamNuiCameraElevationGetAngle", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_nui.cc" + }, + { + "module": "xam", + "ordinal": 2178, + "ordinal_hex": "0x00000882", + "name": "XamNuiCameraElevationAutoTilt", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2179, + "ordinal_hex": "0x00000883", + "name": "XamNuiCameraElevationStopMovement", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2180, + "ordinal_hex": "0x00000884", + "name": "XamNuiCameraElevationSetCallback", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2181, + "ordinal_hex": "0x00000885", + "name": "XamNuiGetDeviceStatus", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_nui.cc" + }, + { + "module": "xam", + "ordinal": 2182, + "ordinal_hex": "0x00000886", + "name": "XamNuiNatalCameraUpdateStarting", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2183, + "ordinal_hex": "0x00000887", + "name": "XamNuiNatalCameraUpdateComplete", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2184, + "ordinal_hex": "0x00000888", + "name": "XamNuiHudGetVersions", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_nui.cc" + }, + { + "module": "xam", + "ordinal": 2185, + "ordinal_hex": "0x00000889", + "name": "XamGetHUDElementByPath", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2186, + "ordinal_hex": "0x0000088A", + "name": "XamGetHUDElementByAutoId", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2187, + "ordinal_hex": "0x0000088B", + "name": "XuiElementGetScreenPositionCenter", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2188, + "ordinal_hex": "0x0000088C", + "name": "XamNuiCameraElevationReverseAutoTilt", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2189, + "ordinal_hex": "0x0000088D", + "name": "ControlPackSimpleCursorGetRayFromScreenPosition", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2190, + "ordinal_hex": "0x0000088E", + "name": "ControlPackSideNavControlGetNuiHandle", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2191, + "ordinal_hex": "0x0000088F", + "name": "XamFindHUDElementByXuiId", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2192, + "ordinal_hex": "0x00000890", + "name": "XamNuiIsDeviceReady", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_nui.cc" + }, + { + "module": "xam", + "ordinal": 2193, + "ordinal_hex": "0x00000891", + "name": "XamNuiSetForceDeviceOff", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2194, + "ordinal_hex": "0x00000892", + "name": "XamNuiPlayerEngagementUpdate", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_nui.cc" + }, + { + "module": "xam", + "ordinal": 2195, + "ordinal_hex": "0x00000893", + "name": "XamNuiSkeletonGetBestSkeletonIndex", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_nui.cc" + }, + { + "module": "xam", + "ordinal": 2196, + "ordinal_hex": "0x00000894", + "name": "XamNuiSkeletonScoreUpdate", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2197, + "ordinal_hex": "0x00000895", + "name": "XamNuiCameraTiltReportStatus", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2198, + "ordinal_hex": "0x00000896", + "name": "XamNuiCameraAdjustTilt", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2199, + "ordinal_hex": "0x00000897", + "name": "XamNuiIdentityAbort", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_nui.cc" + }, + { + "module": "xam", + "ordinal": 2200, + "ordinal_hex": "0x00000898", + "name": "D3DDevice_CreateVertexShader", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2201, + "ordinal_hex": "0x00000899", + "name": "D3DDevice_CreatePixelShader", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2202, + "ordinal_hex": "0x0000089A", + "name": "D3DDevice_CreateTexture", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2203, + "ordinal_hex": "0x0000089B", + "name": "D3DDevice_CreateVertexBuffer", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2204, + "ordinal_hex": "0x0000089C", + "name": "D3DDevice_CreateIndexBuffer", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2205, + "ordinal_hex": "0x0000089D", + "name": "D3DDevice_CreateVertexDeclaration", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2206, + "ordinal_hex": "0x0000089E", + "name": "D3DVertexBuffer_Unlock", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2207, + "ordinal_hex": "0x0000089F", + "name": "D3DVertexBuffer_Lock", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2208, + "ordinal_hex": "0x000008A0", + "name": "D3DIndexBuffer_Unlock", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2209, + "ordinal_hex": "0x000008A1", + "name": "D3DIndexBuffer_Lock", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2210, + "ordinal_hex": "0x000008A2", + "name": "D3DTexture_UnlockRect", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2211, + "ordinal_hex": "0x000008A3", + "name": "D3DTexture_LockRect", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2212, + "ordinal_hex": "0x000008A4", + "name": "D3DDevice_Clear", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2213, + "ordinal_hex": "0x000008A5", + "name": "D3DDevice_SetViewport", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2214, + "ordinal_hex": "0x000008A6", + "name": "D3DDevice_GetViewport", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2215, + "ordinal_hex": "0x000008A7", + "name": "D3DVertexShader_Release", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2216, + "ordinal_hex": "0x000008A8", + "name": "D3DPixelShader_Release", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2217, + "ordinal_hex": "0x000008A9", + "name": "D3DVertexDeclaration_Release", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2218, + "ordinal_hex": "0x000008AA", + "name": "D3DResource_Release", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2219, + "ordinal_hex": "0x000008AB", + "name": "D3DDevice_Release", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2220, + "ordinal_hex": "0x000008AC", + "name": "D3DDevice_SetVertexShader", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2221, + "ordinal_hex": "0x000008AD", + "name": "D3DDevice_SetPixelShader", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2222, + "ordinal_hex": "0x000008AE", + "name": "D3DDevice_SetTexture", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2223, + "ordinal_hex": "0x000008AF", + "name": "D3DDevice_SetVertexDeclaration", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2224, + "ordinal_hex": "0x000008B0", + "name": "D3DDevice_SetIndices", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2225, + "ordinal_hex": "0x000008B1", + "name": "D3DDevice_SetStreamSource", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2226, + "ordinal_hex": "0x000008B2", + "name": "D3DDevice_DrawVertices", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2227, + "ordinal_hex": "0x000008B3", + "name": "D3DDevice_DrawVerticesUP", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2228, + "ordinal_hex": "0x000008B4", + "name": "D3DDevice_DrawIndexedVertices", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2229, + "ordinal_hex": "0x000008B5", + "name": "D3DDevice_DrawIndexedVerticesUP", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2230, + "ordinal_hex": "0x000008B6", + "name": "D3DDevice_SetVertexShaderConstantF_ParameterCheck", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2231, + "ordinal_hex": "0x000008B7", + "name": "D3DDevice_SetPixelShaderConstantF_ParameterCheck", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2232, + "ordinal_hex": "0x000008B8", + "name": "D3DDevice_SetSamplerState_ParameterCheck", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2233, + "ordinal_hex": "0x000008B9", + "name": "D3DDevice_SetRenderState_ParameterCheck", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2234, + "ordinal_hex": "0x000008BA", + "name": "D3DDevice_GetRenderState_ParameterCheck", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2235, + "ordinal_hex": "0x000008BB", + "name": "D3DDevice_SetVertexShaderConstantFN", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2236, + "ordinal_hex": "0x000008BC", + "name": "D3DDevice_SetPixelShaderConstantFN", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2237, + "ordinal_hex": "0x000008BD", + "name": "D3DDevice_GetRenderState_ZEnable", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2238, + "ordinal_hex": "0x000008BE", + "name": "D3DDevice_GetRenderState_CullMode", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2239, + "ordinal_hex": "0x000008BF", + "name": "D3DDevice_GetRenderState_AlphaBlendEnable", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2240, + "ordinal_hex": "0x000008C0", + "name": "D3DDevice_GetRenderState_SrcBlendAlpha", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2241, + "ordinal_hex": "0x000008C1", + "name": "D3DDevice_GetRenderState_DestBlendAlpha", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2242, + "ordinal_hex": "0x000008C2", + "name": "D3DDevice_GetRenderState_BlendOp", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2243, + "ordinal_hex": "0x000008C3", + "name": "D3DDevice_GetRenderState_ViewportEnable", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2244, + "ordinal_hex": "0x000008C4", + "name": "D3DDevice_SetRenderState_ZEnable", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2245, + "ordinal_hex": "0x000008C5", + "name": "D3DDevice_SetRenderState_CullMode", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2246, + "ordinal_hex": "0x000008C6", + "name": "D3DDevice_SetRenderState_AlphaBlendEnable", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2247, + "ordinal_hex": "0x000008C7", + "name": "D3DDevice_SetRenderState_SrcBlendAlpha", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2248, + "ordinal_hex": "0x000008C8", + "name": "D3DDevice_SetRenderState_DestBlendAlpha", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2249, + "ordinal_hex": "0x000008C9", + "name": "D3DDevice_SetRenderState_BlendOp", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2250, + "ordinal_hex": "0x000008CA", + "name": "D3DDevice_SetRenderState_ViewportEnable", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2251, + "ordinal_hex": "0x000008CB", + "name": "D3DDevice_SetSamplerState_MagFilter", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2252, + "ordinal_hex": "0x000008CC", + "name": "D3DDevice_SetSamplerState_MinFilter", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2253, + "ordinal_hex": "0x000008CD", + "name": "D3DDevice_SetSamplerState_AddressU", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2254, + "ordinal_hex": "0x000008CE", + "name": "D3DDevice_SetSamplerState_AddressV", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2255, + "ordinal_hex": "0x000008CF", + "name": "XGSetTextureHeader", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2256, + "ordinal_hex": "0x000008D0", + "name": "XGGetTextureDesc", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2257, + "ordinal_hex": "0x000008D1", + "name": "XGOffsetResourceAddress", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2258, + "ordinal_hex": "0x000008D2", + "name": "D3DResource_AddRef", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2259, + "ordinal_hex": "0x000008D3", + "name": "D3DVertexShader_AddRef", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2260, + "ordinal_hex": "0x000008D4", + "name": "D3DPixelShader_AddRef", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2261, + "ordinal_hex": "0x000008D5", + "name": "D3DVertexDeclaration_AddRef", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2262, + "ordinal_hex": "0x000008D6", + "name": "XGSetTextureHeaderEx", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2263, + "ordinal_hex": "0x000008D7", + "name": "D3DDevice_GetRenderTarget", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2264, + "ordinal_hex": "0x000008D8", + "name": "D3DDevice_SetRenderTarget", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2265, + "ordinal_hex": "0x000008D9", + "name": "D3DDevice_GetDepthStencilSurface", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2266, + "ordinal_hex": "0x000008DA", + "name": "D3DDevice_SetDepthStencilSurface", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2267, + "ordinal_hex": "0x000008DB", + "name": "D3DDevice_Resolve", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2268, + "ordinal_hex": "0x000008DC", + "name": "D3DDevice_SetPixelShaderConstantB", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2269, + "ordinal_hex": "0x000008DD", + "name": "XamNuiGetDeviceSerialNumber", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2270, + "ordinal_hex": "0x000008DE", + "name": "XamNuiGetLoadedDepthCalibration", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2271, + "ordinal_hex": "0x000008DF", + "name": "XamNuiGetTrueColorInfo", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2272, + "ordinal_hex": "0x000008E0", + "name": "XamNuiGetCameraIntrinsics", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2273, + "ordinal_hex": "0x000008E1", + "name": "XamNuiGetFanRate", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2274, + "ordinal_hex": "0x000008E2", + "name": "XamNuiGetSupportString", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2275, + "ordinal_hex": "0x000008E3", + "name": "XamKinectGetHardwareType", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2300, + "ordinal_hex": "0x000008FC", + "name": "XamXtwManagerGetVariableCount", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2301, + "ordinal_hex": "0x000008FD", + "name": "XamXtwManagerGetId", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2302, + "ordinal_hex": "0x000008FE", + "name": "XamXtwManagerGetValue", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2303, + "ordinal_hex": "0x000008FF", + "name": "XamXtwManagerSetValue", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2304, + "ordinal_hex": "0x00000900", + "name": "XamXtwManagerIncrement", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2305, + "ordinal_hex": "0x00000901", + "name": "XamXtwManagerDecrement", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2306, + "ordinal_hex": "0x00000902", + "name": "XamXtwManagerResetValue", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2307, + "ordinal_hex": "0x00000903", + "name": "XamXtwManagerResetAll", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2308, + "ordinal_hex": "0x00000904", + "name": "XamXtwManagerGetDataFilePath", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2309, + "ordinal_hex": "0x00000905", + "name": "XamXtwManagerDeleteDataFile", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2310, + "ordinal_hex": "0x00000906", + "name": "XamXtwManagerSave", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2311, + "ordinal_hex": "0x00000907", + "name": "XamXtwManagerLoad", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2312, + "ordinal_hex": "0x00000908", + "name": "XamGetXTweakManager", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2491, + "ordinal_hex": "0x000009BB", + "name": "XamMediaVerificationCreate", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_media.cc" + }, + { + "module": "xam", + "ordinal": 2492, + "ordinal_hex": "0x000009BC", + "name": "XamMediaVerificationClose", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_media.cc" + }, + { + "module": "xam", + "ordinal": 2493, + "ordinal_hex": "0x000009BD", + "name": "XamMediaVerificationVerify", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_media.cc" + }, + { + "module": "xam", + "ordinal": 2494, + "ordinal_hex": "0x000009BE", + "name": "XamMediaVerificationFailedBlocks", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_media.cc" + }, + { + "module": "xam", + "ordinal": 2495, + "ordinal_hex": "0x000009BF", + "name": "XamMediaVerificationInject", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_media.cc" + }, + { + "module": "xam", + "ordinal": 2496, + "ordinal_hex": "0x000009C0", + "name": "XamShowBadDiscErrorUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2500, + "ordinal_hex": "0x000009C4", + "name": "XamBackgroundDownloadSetMode", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2501, + "ordinal_hex": "0x000009C5", + "name": "XamBackgroundDownloadIsEnabled", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2502, + "ordinal_hex": "0x000009C6", + "name": "XamBackgroundDownloadGetActiveItem", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2503, + "ordinal_hex": "0x000009C7", + "name": "XamBackgroundDownloadGetItems", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2504, + "ordinal_hex": "0x000009C8", + "name": "XamBackgroundDownloadClearItems", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2505, + "ordinal_hex": "0x000009C9", + "name": "XamBackgroundDownloadItemAdd", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2506, + "ordinal_hex": "0x000009CA", + "name": "XamBackgroundDownloadItemRemove", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2507, + "ordinal_hex": "0x000009CB", + "name": "XamBackgroundDownloadItemMakeFirst", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2508, + "ordinal_hex": "0x000009CC", + "name": "XamBackgroundDownloadSetForegroundPriority", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2509, + "ordinal_hex": "0x000009CD", + "name": "XamBackgroundDownloadGetForegroundPriority", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2510, + "ordinal_hex": "0x000009CE", + "name": "XamBackgroundDownloadItemToContentData", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2511, + "ordinal_hex": "0x000009CF", + "name": "XamBackgroundDownloadItemGetStatus", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2512, + "ordinal_hex": "0x000009D0", + "name": "XamBackgroundDownloadHistoryGetItem", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2513, + "ordinal_hex": "0x000009D1", + "name": "XamBackgroundDownloadItemGetHistoryStatus", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2514, + "ordinal_hex": "0x000009D2", + "name": "XamBackgroundDownloadItemSetHistoryStatus", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2515, + "ordinal_hex": "0x000009D3", + "name": "XamBackgroundDownloadItemGetStatusAsync", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2516, + "ordinal_hex": "0x000009D4", + "name": "XamBackgroundDownloadItemGetStatusEx", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2517, + "ordinal_hex": "0x000009D5", + "name": "XamBackgroundDownloadItemGetHistoryStatusEx", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2518, + "ordinal_hex": "0x000009D6", + "name": "XamBackgroundDownloadBindItems", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2519, + "ordinal_hex": "0x000009D7", + "name": "XamBackgroundDownloadSetPollingActive", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2520, + "ordinal_hex": "0x000009D8", + "name": "XamBackgroundDownloadGetPollingActive", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2521, + "ordinal_hex": "0x000009D9", + "name": "XamBackgroundDownloadGetMode", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2522, + "ordinal_hex": "0x000009DA", + "name": "XamBackgroundDownloadGetUnexpectedChangeCount", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2523, + "ordinal_hex": "0x000009DB", + "name": "XamBackgroundDownloadIsItemForThisConsole", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2524, + "ordinal_hex": "0x000009DC", + "name": "XamBackgroundDownloadSelectDevice", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2525, + "ordinal_hex": "0x000009DD", + "name": "XamBackgroundDownloadItemModify", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2526, + "ordinal_hex": "0x000009DE", + "name": "XamBackgroundDownloadCacheLegacyMappingInfo", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2527, + "ordinal_hex": "0x000009DF", + "name": "XamBackgroundDownloadGetLegacyMappingInfo", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2528, + "ordinal_hex": "0x000009E0", + "name": "XamBackgroundDownloadGetLegacyId", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2529, + "ordinal_hex": "0x000009E1", + "name": "XamBackgroundDownloadDoFail", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2530, + "ordinal_hex": "0x000009E2", + "name": "XamDownloadSingleItem", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2531, + "ordinal_hex": "0x000009E3", + "name": "XamDownloadInSingleItemMode", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2600, + "ordinal_hex": "0x00000A28", + "name": "XamSwapDisc", + "type": "function", + "status": "sketchy", + "tags": [ + "Sketchy" + ], + "category": "Content", + "source_file": "src/xenia/kernel/xam/xam_content.cc" + }, + { + "module": "xam", + "ordinal": 2601, + "ordinal_hex": "0x00000A29", + "name": "XamSwapDiscPatchAddress", + "type": "variable", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2602, + "ordinal_hex": "0x00000A2A", + "name": "XamSwapCancel", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2603, + "ordinal_hex": "0x00000A2B", + "name": "XamContentSetAttributes", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2610, + "ordinal_hex": "0x00000A32", + "name": "XamRamDriveCreate", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2611, + "ordinal_hex": "0x00000A33", + "name": "XamRamDriveDestroy", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2650, + "ordinal_hex": "0x00000A5A", + "name": "XamPlayTimerGetData", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2651, + "ordinal_hex": "0x00000A5B", + "name": "XamPlayTimerSetData", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2652, + "ordinal_hex": "0x00000A5C", + "name": "XamPlayTimerResume", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2653, + "ordinal_hex": "0x00000A5D", + "name": "XamPlayTimerSuspend", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2654, + "ordinal_hex": "0x00000A5E", + "name": "XamPlayTimerIsRunning", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2655, + "ordinal_hex": "0x00000A5F", + "name": "XamPlayTimerIsEnabled", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2656, + "ordinal_hex": "0x00000A60", + "name": "XamPlayTimerGetNextResetDate", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2657, + "ordinal_hex": "0x00000A61", + "name": "XamPlayTimerFormatDurationString", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2658, + "ordinal_hex": "0x00000A62", + "name": "XamPlayTimerGetTimeRemaining", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2659, + "ordinal_hex": "0x00000A63", + "name": "XamPlayTimerUpdateTimeRemaining", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2660, + "ordinal_hex": "0x00000A64", + "name": "XamPlayTimerForceNotification", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2661, + "ordinal_hex": "0x00000A65", + "name": "XamPlayTimerRefreshResetDate", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2662, + "ordinal_hex": "0x00000A66", + "name": "XuiResourceOpenAndVerifyNoLoc", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2670, + "ordinal_hex": "0x00000A6E", + "name": "UpnpAVServerSearchInitialize", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2671, + "ordinal_hex": "0x00000A6F", + "name": "UpnpAVServerSearchDestroy", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2672, + "ordinal_hex": "0x00000A70", + "name": "UpnpAVServerSearchStart", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2673, + "ordinal_hex": "0x00000A71", + "name": "Destroy", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2674, + "ordinal_hex": "0x00000A72", + "name": "UpnpAVServerSearchDoWork", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2675, + "ordinal_hex": "0x00000A73", + "name": "UpnpAVServerSearchGetNextServer", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2700, + "ordinal_hex": "0x00000A8C", + "name": "XCustomBroadcastGamercardEvent", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2701, + "ordinal_hex": "0x00000A8D", + "name": "XamCustomGetCurrentActions", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2720, + "ordinal_hex": "0x00000AA0", + "name": "XamInstrumentationLogEvent", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2721, + "ordinal_hex": "0x00000AA1", + "name": "XamRegisterSMCNotification", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2728, + "ordinal_hex": "0x00000AA8", + "name": "XamIsScreenSaverActive", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2730, + "ordinal_hex": "0x00000AAA", + "name": "XamInstrumentationLogEventEx", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2731, + "ordinal_hex": "0x00000AAB", + "name": "XamInstrumentationGetSourceConfig", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2732, + "ordinal_hex": "0x00000AAC", + "name": "XamInstrumentationDebugConfig", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2780, + "ordinal_hex": "0x00000ADC", + "name": "CurlCreateCacheEntry", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2781, + "ordinal_hex": "0x00000ADD", + "name": "CurlOpenCacheEntry", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2782, + "ordinal_hex": "0x00000ADE", + "name": "CurlSetCacheEntryExpireTime", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2783, + "ordinal_hex": "0x00000ADF", + "name": "CurlReadCacheEntryHeaders", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2784, + "ordinal_hex": "0x00000AE0", + "name": "CurlReadCacheEntryContent", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2785, + "ordinal_hex": "0x00000AE1", + "name": "CurlWriteCacheEntryContent", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2786, + "ordinal_hex": "0x00000AE2", + "name": "CurlCloseCacheEntry", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2787, + "ordinal_hex": "0x00000AE3", + "name": "CurlEnumerateCacheEntry", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2789, + "ordinal_hex": "0x00000AE5", + "name": "CurlWipeBackingFiles", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2790, + "ordinal_hex": "0x00000AE6", + "name": "CurlBindFunctionTable", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2791, + "ordinal_hex": "0x00000AE7", + "name": "CurlOpenTitleBackingFile", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2794, + "ordinal_hex": "0x00000AEA", + "name": "XamUserIsPartialProfile", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2795, + "ordinal_hex": "0x00000AEB", + "name": "XamLocateTitle", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2796, + "ordinal_hex": "0x00000AEC", + "name": "XamProfileGetLocalTitleCount", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2797, + "ordinal_hex": "0x00000AED", + "name": "XamContentRemoveCacheDevice", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2798, + "ordinal_hex": "0x00000AEE", + "name": "XamContentAddCacheDevice", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2800, + "ordinal_hex": "0x00000AF0", + "name": "XamSetSecurityViolationDetected", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2801, + "ordinal_hex": "0x00000AF1", + "name": "XamIsSecurityViolationDetected", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2802, + "ordinal_hex": "0x00000AF2", + "name": "XamIsAnySecurityViolationDetected", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2803, + "ordinal_hex": "0x00000AF3", + "name": "XamGetSecurityViolationsDetected", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2804, + "ordinal_hex": "0x00000AF4", + "name": "XamActivateCounterMeasure", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2805, + "ordinal_hex": "0x00000AF5", + "name": "XamDeactivateCounterMeasure", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2806, + "ordinal_hex": "0x00000AF6", + "name": "XamIsCounterMeasureActivated", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2807, + "ordinal_hex": "0x00000AF7", + "name": "XamGetActiveCounterMeasures", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2808, + "ordinal_hex": "0x00000AF8", + "name": "XamPmdIdentify", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2809, + "ordinal_hex": "0x00000AF9", + "name": "XamPmdSendCommand", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2810, + "ordinal_hex": "0x00000AFA", + "name": "XamPmdReadReport", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2812, + "ordinal_hex": "0x00000AFC", + "name": "XamPartyCreate", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2813, + "ordinal_hex": "0x00000AFD", + "name": "XamPartyLeave", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2814, + "ordinal_hex": "0x00000AFE", + "name": "XamPartySendInviteDeprecated", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2815, + "ordinal_hex": "0x00000AFF", + "name": "XamPartyGetUserList", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_party.cc" + }, + { + "module": "xam", + "ordinal": 2816, + "ordinal_hex": "0x00000B00", + "name": "XamPartySendGameInvites", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_party.cc" + }, + { + "module": "xam", + "ordinal": 2817, + "ordinal_hex": "0x00000B01", + "name": "XamPartyJoin", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2818, + "ordinal_hex": "0x00000B02", + "name": "XamPartyKickUser", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2819, + "ordinal_hex": "0x00000B03", + "name": "XamPartyAddLocalUsers", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2820, + "ordinal_hex": "0x00000B04", + "name": "XamConvertEmoticons", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2821, + "ordinal_hex": "0x00000B05", + "name": "XamGetLocaleTimeFormat", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2822, + "ordinal_hex": "0x00000B06", + "name": "XamPartyRemoveLocalUsers", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2823, + "ordinal_hex": "0x00000B07", + "name": "XamPartyGetUserListInternal", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2824, + "ordinal_hex": "0x00000B08", + "name": "XamPartySetJoinable", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2825, + "ordinal_hex": "0x00000B09", + "name": "XamPartyGetJoinable", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2826, + "ordinal_hex": "0x00000B0A", + "name": "XamPartyGetInfo", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2827, + "ordinal_hex": "0x00000B0B", + "name": "XamPartySetCustomData", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_party.cc" + }, + { + "module": "xam", + "ordinal": 2828, + "ordinal_hex": "0x00000B0C", + "name": "XamPartySetConnectivityGraph", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2829, + "ordinal_hex": "0x00000B0D", + "name": "XamPartyGetRoutingTable", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2830, + "ordinal_hex": "0x00000B0E", + "name": "XamPartyAutomationInprocCall", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2831, + "ordinal_hex": "0x00000B0F", + "name": "XamPartyGetState", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2832, + "ordinal_hex": "0x00000B10", + "name": "XamPartyGetBandwidth", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_party.cc" + }, + { + "module": "xam", + "ordinal": 2833, + "ordinal_hex": "0x00000B11", + "name": "XamPartyGetNetworkCounters", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2834, + "ordinal_hex": "0x00000B12", + "name": "XamShowQuickLaunchUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2835, + "ordinal_hex": "0x00000B13", + "name": "XamPartyIsCoordinator", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2836, + "ordinal_hex": "0x00000B14", + "name": "XamPartyGetFormation", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2837, + "ordinal_hex": "0x00000B15", + "name": "XamPartySendInvite", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2838, + "ordinal_hex": "0x00000B16", + "name": "XamPartySetTestDelay", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2839, + "ordinal_hex": "0x00000B17", + "name": "XamPartyOverrideNatType", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2840, + "ordinal_hex": "0x00000B18", + "name": "XamPartyGetAccessLevel", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2841, + "ordinal_hex": "0x00000B19", + "name": "XamPartySetTestFlags", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2842, + "ordinal_hex": "0x00000B1A", + "name": "XamIsSystemExperienceTitleId", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "None", + "source_file": "src/xenia/kernel/xam/xam_info.cc" + }, + { + "module": "xam", + "ordinal": 2843, + "ordinal_hex": "0x00000B1B", + "name": "XamPartyJoinEx", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2844, + "ordinal_hex": "0x00000B1C", + "name": "XamPartyGetInfoEx", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2848, + "ordinal_hex": "0x00000B20", + "name": "XamIsCurrentTitleDatacenterClient", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2850, + "ordinal_hex": "0x00000B22", + "name": "XamTaskSetCancelSubTasks", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2851, + "ordinal_hex": "0x00000B23", + "name": "XamTaskGetCompletionStatus", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2852, + "ordinal_hex": "0x00000B24", + "name": "XamTaskCancelWaitAndCloseWaitTask", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2855, + "ordinal_hex": "0x00000B27", + "name": "XamDataCenterLog", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2856, + "ordinal_hex": "0x00000B28", + "name": "XamDataCenterGetDhcpOptionResponseHostnameAndPort", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2857, + "ordinal_hex": "0x00000B29", + "name": "XamDataCenterLogEvent", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2858, + "ordinal_hex": "0x00000B2A", + "name": "XamDataCenterShowForceSignInMessage", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2860, + "ordinal_hex": "0x00000B2C", + "name": "XamWebInstrumentationCreateReport", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2861, + "ordinal_hex": "0x00000B2D", + "name": "XamWebInstrumentationSetUserVar", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2862, + "ordinal_hex": "0x00000B2E", + "name": "XamWebInstrumentationSetUserVarNoEscape", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2863, + "ordinal_hex": "0x00000B2F", + "name": "XamWebInstrumentationGetURL", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2864, + "ordinal_hex": "0x00000B30", + "name": "XamWebInstrumentationSendReport", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2865, + "ordinal_hex": "0x00000B31", + "name": "XamWebInstrumentationDestroyReport", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2866, + "ordinal_hex": "0x00000B32", + "name": "XamWebInstrumentationCreateSampledReport", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2867, + "ordinal_hex": "0x00000B33", + "name": "XampSetSamplingRandomValue", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2868, + "ordinal_hex": "0x00000B34", + "name": "XampWebInstrumentationSetProfileCounts", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "UserProfiles", + "source_file": "src/xenia/kernel/xam/xam_info.cc" + }, + { + "module": "xam", + "ordinal": 2869, + "ordinal_hex": "0x00000B35", + "name": "XamWebInstrumentationGetURLEx", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2870, + "ordinal_hex": "0x00000B36", + "name": "XampSetOmnitureCallbackFunction", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2871, + "ordinal_hex": "0x00000B37", + "name": "XamShowQuickChatUIp", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2872, + "ordinal_hex": "0x00000B38", + "name": "XamShowSocialPostUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2873, + "ordinal_hex": "0x00000B39", + "name": "XamShowBeaconsUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2874, + "ordinal_hex": "0x00000B3A", + "name": "XamShowMarketplacePurchaseOrderUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2875, + "ordinal_hex": "0x00000B3B", + "name": "XamShowMarketplaceGetOrderReceipts", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2876, + "ordinal_hex": "0x00000B3C", + "name": "XamShowGenericOnlineAppUI", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2877, + "ordinal_hex": "0x00000B3D", + "name": "XamUserAllowedToPostToSocialNetwork", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2878, + "ordinal_hex": "0x00000B3E", + "name": "XamShowMarketplacePurchaseOrderUIEx", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2879, + "ordinal_hex": "0x00000B3F", + "name": "DebugXamShowMessageBoxUI_Wait", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2883, + "ordinal_hex": "0x00000B43", + "name": "XamSetCountry", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2884, + "ordinal_hex": "0x00000B44", + "name": "XamIsCurrentTitleDatacenterDash", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2885, + "ordinal_hex": "0x00000B45", + "name": "XamLoaderRebootToServerDash", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2886, + "ordinal_hex": "0x00000B46", + "name": "XamIsDataCenterMode", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2888, + "ordinal_hex": "0x00000B48", + "name": "XamUserGetXUIDForTFA", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xam", + "ordinal": 2890, + "ordinal_hex": "0x00000B4A", + "name": "XamVerifyXSignerSignature", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + } + ] + }, + "xbdm": { + "file": "xbdm.xex", + "exports": [ + { + "module": "xbdm", + "ordinal": 1, + "ordinal_hex": "0x00000001", + "name": "DmAllocatePool", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Debug", + "source_file": "src/xenia/kernel/xbdm/xbdm_misc.cc" + }, + { + "module": "xbdm", + "ordinal": 2, + "ordinal_hex": "0x00000002", + "name": "DmAllocatePoolWithTag", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 3, + "ordinal_hex": "0x00000003", + "name": "DmCloseCounters", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 4, + "ordinal_hex": "0x00000004", + "name": "DmCloseLoadedModules", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Debug", + "source_file": "src/xenia/kernel/xbdm/xbdm_misc.cc" + }, + { + "module": "xbdm", + "ordinal": 5, + "ordinal_hex": "0x00000005", + "name": "DmCloseModuleSections_", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 6, + "ordinal_hex": "0x00000006", + "name": "DmCloseNotificationSession", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 7, + "ordinal_hex": "0x00000007", + "name": "DmClosePerformanceCounter", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 8, + "ordinal_hex": "0x00000008", + "name": "DmContinueThread", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 9, + "ordinal_hex": "0x00000009", + "name": "DmFreePool", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Debug", + "source_file": "src/xenia/kernel/xbdm/xbdm_misc.cc" + }, + { + "module": "xbdm", + "ordinal": 10, + "ordinal_hex": "0x0000000A", + "name": "DmGetMemory", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Debug", + "source_file": "src/xenia/kernel/xbdm/xbdm_misc.cc" + }, + { + "module": "xbdm", + "ordinal": 11, + "ordinal_hex": "0x0000000B", + "name": "DmGetModuleLongName", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 12, + "ordinal_hex": "0x0000000C", + "name": "DmGetProcAddress", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 13, + "ordinal_hex": "0x0000000D", + "name": "DmGetThreadContext", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 15, + "ordinal_hex": "0x0000000F", + "name": "DmGetThreadList", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Debug", + "source_file": "src/xenia/kernel/xbdm/xbdm_misc.cc" + }, + { + "module": "xbdm", + "ordinal": 16, + "ordinal_hex": "0x00000010", + "name": "DmGetXbeInfo", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Debug", + "source_file": "src/xenia/kernel/xbdm/xbdm_misc.cc" + }, + { + "module": "xbdm", + "ordinal": 17, + "ordinal_hex": "0x00000011", + "name": "DmGetXboxName", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented", + "Debug", + "Implemented" + ], + "category": "Debug", + "source_file": "src/xenia/kernel/xbdm/xbdm_misc.cc" + }, + { + "module": "xbdm", + "ordinal": 19, + "ordinal_hex": "0x00000013", + "name": "DmGo", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 20, + "ordinal_hex": "0x00000014", + "name": "DmHaltThread", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 21, + "ordinal_hex": "0x00000015", + "name": "DmIsDebuggerPresent", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Debug", + "source_file": "src/xenia/kernel/xbdm/xbdm_misc.cc" + }, + { + "module": "xbdm", + "ordinal": 22, + "ordinal_hex": "0x00000016", + "name": "DmIsThreadStopped", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 23, + "ordinal_hex": "0x00000017", + "name": "DmLoadExtension", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 24, + "ordinal_hex": "0x00000018", + "name": "DmNotify", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Debug", + "source_file": "src/xenia/kernel/xbdm/xbdm_misc.cc" + }, + { + "module": "xbdm", + "ordinal": 25, + "ordinal_hex": "0x00000019", + "name": "DmOpenNotificationSession", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Debug", + "source_file": "src/xenia/kernel/xbdm/xbdm_misc.cc" + }, + { + "module": "xbdm", + "ordinal": 26, + "ordinal_hex": "0x0000001A", + "name": "DmOpenPerformanceCounter", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 27, + "ordinal_hex": "0x0000001B", + "name": "DmQueryPerformanceCounterHandle", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 28, + "ordinal_hex": "0x0000001C", + "name": "DmReboot", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 30, + "ordinal_hex": "0x0000001E", + "name": "DmRegisterCommandProcessor", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Debug", + "source_file": "src/xenia/kernel/xbdm/xbdm_misc.cc" + }, + { + "module": "xbdm", + "ordinal": 32, + "ordinal_hex": "0x00000020", + "name": "DmRegisterNotificationProcessor", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 33, + "ordinal_hex": "0x00000021", + "name": "DmRegisterPerformanceCounter", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 34, + "ordinal_hex": "0x00000022", + "name": "DmRemoveBreakpoint", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 35, + "ordinal_hex": "0x00000023", + "name": "DmResumeThread", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Debug", + "source_file": "src/xenia/kernel/xbdm/xbdm_misc.cc" + }, + { + "module": "xbdm", + "ordinal": 36, + "ordinal_hex": "0x00000024", + "name": "DmSendNotificationString", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Debug", + "source_file": "src/xenia/kernel/xbdm/xbdm_misc.cc" + }, + { + "module": "xbdm", + "ordinal": 37, + "ordinal_hex": "0x00000025", + "name": "DmSetBreakpoint", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 38, + "ordinal_hex": "0x00000026", + "name": "DmSetDataBreakpoint", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 39, + "ordinal_hex": "0x00000027", + "name": "DmSetInitialBreakpoint", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 40, + "ordinal_hex": "0x00000028", + "name": "DmSetMemory", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Debug", + "source_file": "src/xenia/kernel/xbdm/xbdm_misc.cc" + }, + { + "module": "xbdm", + "ordinal": 41, + "ordinal_hex": "0x00000029", + "name": "DmSetThreadContext", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 42, + "ordinal_hex": "0x0000002A", + "name": "DmSetTitle", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 43, + "ordinal_hex": "0x0000002B", + "name": "DmSetXboxName", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 45, + "ordinal_hex": "0x0000002D", + "name": "DmStop", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 46, + "ordinal_hex": "0x0000002E", + "name": "DmStopOn", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 48, + "ordinal_hex": "0x00000030", + "name": "DmSuspendThread", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Debug", + "source_file": "src/xenia/kernel/xbdm/xbdm_misc.cc" + }, + { + "module": "xbdm", + "ordinal": 49, + "ordinal_hex": "0x00000031", + "name": "DmThreadUserData", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 50, + "ordinal_hex": "0x00000032", + "name": "DmUnloadExtension", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 51, + "ordinal_hex": "0x00000033", + "name": "DmWalkLoadedModules", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Debug", + "source_file": "src/xenia/kernel/xbdm/xbdm_misc.cc" + }, + { + "module": "xbdm", + "ordinal": 52, + "ordinal_hex": "0x00000034", + "name": "DmWalkModuleSections", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 53, + "ordinal_hex": "0x00000035", + "name": "DmWalkPerformanceCounters", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 55, + "ordinal_hex": "0x00000037", + "name": "DmCloseCounters_0", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 56, + "ordinal_hex": "0x00000038", + "name": "DmIsBreakpoint", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 57, + "ordinal_hex": "0x00000039", + "name": "DmCloseCounters_1", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 58, + "ordinal_hex": "0x0000003A", + "name": "DmSetUserAccess", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 59, + "ordinal_hex": "0x0000003B", + "name": "DmGetUserAccess", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 60, + "ordinal_hex": "0x0000003C", + "name": "DmWalkUserList", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 61, + "ordinal_hex": "0x0000003D", + "name": "DmAddUser", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 62, + "ordinal_hex": "0x0000003E", + "name": "DmEnableSecurity", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 63, + "ordinal_hex": "0x0000003F", + "name": "DmIsSecurityEnabled", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 64, + "ordinal_hex": "0x00000040", + "name": "DmRemoveUser", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 65, + "ordinal_hex": "0x00000041", + "name": "__CAP_Start_Profiling", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Debug", + "source_file": "src/xenia/kernel/xbdm/xbdm_misc.cc" + }, + { + "module": "xbdm", + "ordinal": 66, + "ordinal_hex": "0x00000042", + "name": "__CAP_End_Profiling", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Debug", + "source_file": "src/xenia/kernel/xbdm/xbdm_misc.cc" + }, + { + "module": "xbdm", + "ordinal": 70, + "ordinal_hex": "0x00000046", + "name": "__CAP_Enter_Function", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Debug", + "source_file": "src/xenia/kernel/xbdm/xbdm_misc.cc" + }, + { + "module": "xbdm", + "ordinal": 71, + "ordinal_hex": "0x00000047", + "name": "__CAP_Exit_Function", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Debug", + "source_file": "src/xenia/kernel/xbdm/xbdm_misc.cc" + }, + { + "module": "xbdm", + "ordinal": 72, + "ordinal_hex": "0x00000048", + "name": "DmRegisterCommandProcessorEx", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Debug", + "source_file": "src/xenia/kernel/xbdm/xbdm_misc.cc" + }, + { + "module": "xbdm", + "ordinal": 73, + "ordinal_hex": "0x00000049", + "name": "DmStartProfiling", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Debug", + "source_file": "src/xenia/kernel/xbdm/xbdm_misc.cc" + }, + { + "module": "xbdm", + "ordinal": 74, + "ordinal_hex": "0x0000004A", + "name": "DmStopProfiling", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Debug", + "source_file": "src/xenia/kernel/xbdm/xbdm_misc.cc" + }, + { + "module": "xbdm", + "ordinal": 75, + "ordinal_hex": "0x0000004B", + "name": "DmQueryMemoryStatistics", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 76, + "ordinal_hex": "0x0000004C", + "name": "DmEnableStackTrace", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 77, + "ordinal_hex": "0x0000004D", + "name": "DmQueryAllocationTypeName", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 78, + "ordinal_hex": "0x0000004E", + "name": "DmRegisterAllocationType", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 79, + "ordinal_hex": "0x0000004F", + "name": "DmInsertAllocationEntry", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 80, + "ordinal_hex": "0x00000050", + "name": "DmRemoveAllocationEntry", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 81, + "ordinal_hex": "0x00000051", + "name": "DmSetTitleEx", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 82, + "ordinal_hex": "0x00000052", + "name": "DmCaptureStackBackTrace", + "type": "function", + "status": "stub", + "tags": [ + "Stub", + "HighFrequency" + ], + "category": "Debug", + "source_file": "src/xenia/kernel/xbdm/xbdm_misc.cc" + }, + { + "module": "xbdm", + "ordinal": 83, + "ordinal_hex": "0x00000053", + "name": "DmCrashDump", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 84, + "ordinal_hex": "0x00000054", + "name": "DmIsFastCAPEnabled", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Debug", + "source_file": "src/xenia/kernel/xbdm/xbdm_misc.cc" + }, + { + "module": "xbdm", + "ordinal": 85, + "ordinal_hex": "0x00000055", + "name": "DmGetFileAccessCount", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 88, + "ordinal_hex": "0x00000058", + "name": "DmGetUtilityDriveInfo", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 89, + "ordinal_hex": "0x00000059", + "name": "DmGetThreadInfoEx", + "type": "function", + "status": "sketchy", + "tags": [ + "Sketchy" + ], + "category": "Debug", + "source_file": "src/xenia/kernel/xbdm/xbdm_misc.cc" + }, + { + "module": "xbdm", + "ordinal": 90, + "ordinal_hex": "0x0000005A", + "name": "DmSetProfilingOptions", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Debug", + "source_file": "src/xenia/kernel/xbdm/xbdm_misc.cc" + }, + { + "module": "xbdm", + "ordinal": 91, + "ordinal_hex": "0x0000005B", + "name": "DmQuerySystemSettings", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 92, + "ordinal_hex": "0x0000005C", + "name": "DmSaveSystemSettings", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 106, + "ordinal_hex": "0x0000006A", + "name": "DmpGetPgoModuleHandleForBaseAddress", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 107, + "ordinal_hex": "0x0000006B", + "name": "DmpOnPgoModuleLoad", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 108, + "ordinal_hex": "0x0000006C", + "name": "DmPgoStartDataCollection", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 109, + "ordinal_hex": "0x0000006D", + "name": "DmPgoStopDataCollection", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 110, + "ordinal_hex": "0x0000006E", + "name": "DmPgoSaveSnapshot", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 111, + "ordinal_hex": "0x0000006F", + "name": "IrtClientAbort", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 112, + "ordinal_hex": "0x00000070", + "name": "IrtPogoInit", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 113, + "ordinal_hex": "0x00000071", + "name": "IrtSetStaticInfo", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 114, + "ordinal_hex": "0x00000072", + "name": "IrtAutoSweepW", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 115, + "ordinal_hex": "0x00000073", + "name": "IrtAutoSweepA", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 117, + "ordinal_hex": "0x00000075", + "name": "DmGetDumpMode", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 118, + "ordinal_hex": "0x00000076", + "name": "DmSetDumpMode", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Debug", + "source_file": "src/xenia/kernel/xbdm/xbdm_misc.cc" + }, + { + "module": "xbdm", + "ordinal": 119, + "ordinal_hex": "0x00000077", + "name": "DmGetDumpSettings", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 120, + "ordinal_hex": "0x00000078", + "name": "DmSetDumpSettings", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 121, + "ordinal_hex": "0x00000079", + "name": "DmGetEventDeferFlags", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 122, + "ordinal_hex": "0x0000007A", + "name": "DmSetEventDeferFlags", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 123, + "ordinal_hex": "0x0000007B", + "name": "DmWalkCommittedMemory", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 124, + "ordinal_hex": "0x0000007C", + "name": "DmCloseCounters_2", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 125, + "ordinal_hex": "0x0000007D", + "name": "DmRebootEx", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 130, + "ordinal_hex": "0x00000082", + "name": "DmMountFdfxVolume", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 131, + "ordinal_hex": "0x00000083", + "name": "DmCapGetFileHeader", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 132, + "ordinal_hex": "0x00000084", + "name": "DmCapFreeFileHeader", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 133, + "ordinal_hex": "0x00000085", + "name": "DmTraceStartRecording", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 134, + "ordinal_hex": "0x00000086", + "name": "DmTraceStartRecordingFunction", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 135, + "ordinal_hex": "0x00000087", + "name": "DmTraceSetBufferSize", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 136, + "ordinal_hex": "0x00000088", + "name": "DmTraceStopRecording", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 137, + "ordinal_hex": "0x00000089", + "name": "DmTraceSaveBuffer", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 140, + "ordinal_hex": "0x0000008C", + "name": "DmGetConsoleType", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 141, + "ordinal_hex": "0x0000008D", + "name": "DmMapDevkitDrive", + "type": "function", + "status": "implemented", + "tags": [ + "Implemented" + ], + "category": "Debug", + "source_file": "src/xenia/kernel/xbdm/xbdm_misc.cc" + }, + { + "module": "xbdm", + "ordinal": 142, + "ordinal_hex": "0x0000008E", + "name": "DmWalkLoadedModulesEx", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 143, + "ordinal_hex": "0x0000008F", + "name": "DmGetXexHeaderField", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 144, + "ordinal_hex": "0x00000090", + "name": "DmGetMouseChanges", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 145, + "ordinal_hex": "0x00000091", + "name": "DmFindPdbSignature", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Debug", + "source_file": "src/xenia/kernel/xbdm/xbdm_misc.cc" + }, + { + "module": "xbdm", + "ordinal": 146, + "ordinal_hex": "0x00000092", + "name": "DmGetProfilingStatus", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 147, + "ordinal_hex": "0x00000093", + "name": "DmOpticalDiscLogStart", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 148, + "ordinal_hex": "0x00000094", + "name": "DmOpticalDiscLogStop", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 149, + "ordinal_hex": "0x00000095", + "name": "DmStartSamplingProfiler", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 150, + "ordinal_hex": "0x00000096", + "name": "DmStopSamplingProfiler", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 151, + "ordinal_hex": "0x00000097", + "name": "DmGetSamplingProfilerInfo", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 152, + "ordinal_hex": "0x00000098", + "name": "DmStartFileEventCapture", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 153, + "ordinal_hex": "0x00000099", + "name": "DmStopFileEventCapture", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 154, + "ordinal_hex": "0x0000009A", + "name": "DmSetFileEventMarker", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 155, + "ordinal_hex": "0x0000009B", + "name": "DmMarkPseudoCreateBegin", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 156, + "ordinal_hex": "0x0000009C", + "name": "DmMarkPseudoCreateEnd", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 157, + "ordinal_hex": "0x0000009D", + "name": "DmMarkPseudoEventBegin", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 158, + "ordinal_hex": "0x0000009E", + "name": "DmMarkPseudoEventEnd", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 159, + "ordinal_hex": "0x0000009F", + "name": "DmMarkFileEventWorkerThreadBegin", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 160, + "ordinal_hex": "0x000000A0", + "name": "DmMarkFileEventWorkerThreadEnd", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 161, + "ordinal_hex": "0x000000A1", + "name": "DmGetSystemInfo", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Debug", + "source_file": "src/xenia/kernel/xbdm/xbdm_misc.cc" + }, + { + "module": "xbdm", + "ordinal": 162, + "ordinal_hex": "0x000000A2", + "name": "DmAbortProfiling", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 163, + "ordinal_hex": "0x000000A3", + "name": "DmNetCaptureStart", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 164, + "ordinal_hex": "0x000000A4", + "name": "DmNetCaptureStop", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 165, + "ordinal_hex": "0x000000A5", + "name": "DmQueryTitleMemoryStatistics", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Debug", + "source_file": "src/xenia/kernel/xbdm/xbdm_misc.cc" + }, + { + "module": "xbdm", + "ordinal": 166, + "ordinal_hex": "0x000000A6", + "name": "DmAutomationGetInputProcess", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 167, + "ordinal_hex": "0x000000A7", + "name": "DmAutomationBindController", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 168, + "ordinal_hex": "0x000000A8", + "name": "DmAutomationUnbindController", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 169, + "ordinal_hex": "0x000000A9", + "name": "DmAutomationConnectController", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 170, + "ordinal_hex": "0x000000AA", + "name": "DmAutomationDisconnectController", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 171, + "ordinal_hex": "0x000000AB", + "name": "DmAutomationSetGamepadState", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 172, + "ordinal_hex": "0x000000AC", + "name": "DmAutomationQueueGamepadState", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 173, + "ordinal_hex": "0x000000AD", + "name": "DmAutomationClearGamepadQueue", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 174, + "ordinal_hex": "0x000000AE", + "name": "DmAutomationQueryGamepadQueue", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 175, + "ordinal_hex": "0x000000AF", + "name": "DmAutomationGetUserDefaultProfile", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 176, + "ordinal_hex": "0x000000B0", + "name": "DmAutomationSetUserDefaultProfile", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 177, + "ordinal_hex": "0x000000B1", + "name": "DmTraceIsRecording", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 178, + "ordinal_hex": "0x000000B2", + "name": "DmLoadDebuggerExtension", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 179, + "ordinal_hex": "0x000000B3", + "name": "DmUnloadDebuggerExtension", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 180, + "ordinal_hex": "0x000000B4", + "name": "DmCreateSystemThread", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 181, + "ordinal_hex": "0x000000B5", + "name": "PEPLELookup", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 182, + "ordinal_hex": "0x000000B6", + "name": "PEPLELookupCompact", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 183, + "ordinal_hex": "0x000000B7", + "name": "PVPLELookup", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 184, + "ordinal_hex": "0x000000B8", + "name": "PVPLELookupCompact", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 185, + "ordinal_hex": "0x000000B9", + "name": "PVPLELookupCompactMDS", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 186, + "ordinal_hex": "0x000000BA", + "name": "PVPLEFilteredLookup", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 187, + "ordinal_hex": "0x000000BB", + "name": "PVPLEFilteredLookupCompact", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 188, + "ordinal_hex": "0x000000BC", + "name": "PVPLEFilteredLookupCompactMDS", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 189, + "ordinal_hex": "0x000000BD", + "name": "PVPLETemplatedLookup", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 190, + "ordinal_hex": "0x000000BE", + "name": "PVPLETemplatedLookupCompact", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 191, + "ordinal_hex": "0x000000BF", + "name": "PVPLETemplatedLookupCompactMDS", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 192, + "ordinal_hex": "0x000000C0", + "name": "DmpPgoCounterOverflow", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 193, + "ordinal_hex": "0x000000C1", + "name": "UpdateMDSProbeState", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 194, + "ordinal_hex": "0x000000C2", + "name": "DmGetHttpRegistration", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 195, + "ordinal_hex": "0x000000C3", + "name": "DmTraceSetIOThread", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 196, + "ordinal_hex": "0x000000C4", + "name": "DmPMCInstallAndStart", + "type": "function", + "status": "sketchy", + "tags": [ + "Sketchy" + ], + "category": "Debug", + "source_file": "src/xenia/kernel/xbdm/xbdm_misc.cc" + }, + { + "module": "xbdm", + "ordinal": 197, + "ordinal_hex": "0x000000C5", + "name": "DmPMCStopAndReport", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 198, + "ordinal_hex": "0x000000C6", + "name": "DmPMCInstallSetup", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 199, + "ordinal_hex": "0x000000C7", + "name": "DmPMCUnInstallSetup", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 200, + "ordinal_hex": "0x000000C8", + "name": "DmPMCResetCounters", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 201, + "ordinal_hex": "0x000000C9", + "name": "DmPMCSetTriggerProcessor", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 202, + "ordinal_hex": "0x000000CA", + "name": "DmPMCStart", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 203, + "ordinal_hex": "0x000000CB", + "name": "DmPMCStop", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 204, + "ordinal_hex": "0x000000CC", + "name": "DmPMCGetCounter", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 205, + "ordinal_hex": "0x000000CD", + "name": "DmPMCGetCounters", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 206, + "ordinal_hex": "0x000000CE", + "name": "DmPMCGetCounterName", + "type": "function", + "status": "sketchy", + "tags": [ + "Sketchy" + ], + "category": "Debug", + "source_file": "src/xenia/kernel/xbdm/xbdm_misc.cc" + }, + { + "module": "xbdm", + "ordinal": 207, + "ordinal_hex": "0x000000CF", + "name": "DmPMCDumpCounters", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 208, + "ordinal_hex": "0x000000D0", + "name": "DmPMCDumpCountersVerbose", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 209, + "ordinal_hex": "0x000000D1", + "name": "DmPMCGetCounterCostEstimate", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 210, + "ordinal_hex": "0x000000D2", + "name": "DmPMCGetCounterSource", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 211, + "ordinal_hex": "0x000000D3", + "name": "DmPMCComputeFrequency", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 212, + "ordinal_hex": "0x000000D4", + "name": "DmGetAdditionalTitleMemorySetting", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 213, + "ordinal_hex": "0x000000D5", + "name": "DmGetDebugMemorySize", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 214, + "ordinal_hex": "0x000000D6", + "name": "DmGetConsoleDebugMemoryStatus", + "type": "function", + "status": "stub", + "tags": [ + "Stub" + ], + "category": "Debug", + "source_file": "src/xenia/kernel/xbdm/xbdm_misc.cc" + }, + { + "module": "xbdm", + "ordinal": 215, + "ordinal_hex": "0x000000D7", + "name": "DmNetSimSetLinkStatusHidden", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 216, + "ordinal_hex": "0x000000D8", + "name": "DmNetSimInsertQueue", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 217, + "ordinal_hex": "0x000000D9", + "name": "DmNetSimRemoveQueue", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 218, + "ordinal_hex": "0x000000DA", + "name": "DmNetSimRemoveAllQueues", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 219, + "ordinal_hex": "0x000000DB", + "name": "DmNetSimModifyQueueSettings", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 220, + "ordinal_hex": "0x000000DC", + "name": "DmGetConsoleFeatures", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 221, + "ordinal_hex": "0x000000DD", + "name": "DmNetSimGetQueueStats", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 222, + "ordinal_hex": "0x000000DE", + "name": "DmNetSimGetQueueSettings", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 223, + "ordinal_hex": "0x000000DF", + "name": "DmNetSimGetNumQueues", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 224, + "ordinal_hex": "0x000000E0", + "name": "DmNetSimInsertIpv4Redirect", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 225, + "ordinal_hex": "0x000000E1", + "name": "DmNetSimRemoveIpv4Redirect", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 226, + "ordinal_hex": "0x000000E2", + "name": "DmNetSimGetNumIpv4Redirects", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 300, + "ordinal_hex": "0x0000012C", + "name": "XLFAllocate", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 301, + "ordinal_hex": "0x0000012D", + "name": "XLFFree", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 302, + "ordinal_hex": "0x0000012E", + "name": "XLFQueueAdd", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 303, + "ordinal_hex": "0x0000012F", + "name": "XLFQueueAllocated", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 304, + "ordinal_hex": "0x00000130", + "name": "XLFQueueCreate", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 305, + "ordinal_hex": "0x00000131", + "name": "XLFQueueDestroy", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 306, + "ordinal_hex": "0x00000132", + "name": "XLFQueueGetEntryCount", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 307, + "ordinal_hex": "0x00000133", + "name": "XLFQueueIsEmpty", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 308, + "ordinal_hex": "0x00000134", + "name": "XLFQueueRemove", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 309, + "ordinal_hex": "0x00000135", + "name": "XLFQueueUnsafeDump", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 310, + "ordinal_hex": "0x00000136", + "name": "XLFStackAllocated", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 311, + "ordinal_hex": "0x00000137", + "name": "XLFStackCreate", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 312, + "ordinal_hex": "0x00000138", + "name": "XLFStackDestroy", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 313, + "ordinal_hex": "0x00000139", + "name": "XLFStackGetEntryCount", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 314, + "ordinal_hex": "0x0000013A", + "name": "XLFStackIsEmpty", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 315, + "ordinal_hex": "0x0000013B", + "name": "XLFStackPop", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 316, + "ordinal_hex": "0x0000013C", + "name": "XLFStackPush", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 317, + "ordinal_hex": "0x0000013D", + "name": "XLFStackUnsafeDump", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 320, + "ordinal_hex": "0x00000140", + "name": "XLFPriorityQueueAdd", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 321, + "ordinal_hex": "0x00000141", + "name": "XLFPriorityQueueAllocated", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 322, + "ordinal_hex": "0x00000142", + "name": "XLFPriorityQueueCreate", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 323, + "ordinal_hex": "0x00000143", + "name": "XLFPriorityQueueDestroy", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 324, + "ordinal_hex": "0x00000144", + "name": "XLFPriorityQueueGetEntryCount", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 325, + "ordinal_hex": "0x00000145", + "name": "XLFPriorityQueueIsEmpty", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 326, + "ordinal_hex": "0x00000146", + "name": "XLFPriorityQueueRemoveFirst", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 327, + "ordinal_hex": "0x00000147", + "name": "XLFPriorityQueueRemove", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 328, + "ordinal_hex": "0x00000148", + "name": "XLFPriorityQueueUnsafeDump", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 330, + "ordinal_hex": "0x0000014A", + "name": "XLFHashTableAdd", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 331, + "ordinal_hex": "0x0000014B", + "name": "XLFHashTableAllocated", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 332, + "ordinal_hex": "0x0000014C", + "name": "XLFHashTableCreate", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 333, + "ordinal_hex": "0x0000014D", + "name": "XLFHashTableDestroy", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 334, + "ordinal_hex": "0x0000014E", + "name": "XLFHashTableGetEntryCount", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 335, + "ordinal_hex": "0x0000014F", + "name": "XLFHashTableIsEmpty", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 336, + "ordinal_hex": "0x00000150", + "name": "XLFHashTableRemoveFirst", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 337, + "ordinal_hex": "0x00000151", + "name": "XLFHashTableRemove", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 338, + "ordinal_hex": "0x00000152", + "name": "XLFHashTableUnsafeDump", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 340, + "ordinal_hex": "0x00000154", + "name": "XLFPoolAcquireLock", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 341, + "ordinal_hex": "0x00000155", + "name": "XLFPoolAllocated", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 342, + "ordinal_hex": "0x00000156", + "name": "XLFPoolCreate", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 343, + "ordinal_hex": "0x00000157", + "name": "XLFPoolCreateLock", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 344, + "ordinal_hex": "0x00000158", + "name": "XLFPoolDestroy", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 345, + "ordinal_hex": "0x00000159", + "name": "XLFPoolDestroyLock", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 346, + "ordinal_hex": "0x0000015A", + "name": "XLFPoolIncreaseEvents", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 347, + "ordinal_hex": "0x0000015B", + "name": "XLFPoolIncreaseLocks", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 348, + "ordinal_hex": "0x0000015C", + "name": "XLFPoolInitializeLock", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 349, + "ordinal_hex": "0x0000015D", + "name": "XLFPoolNumberOfEvents", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 350, + "ordinal_hex": "0x0000015E", + "name": "XLFPoolNumberOfLocks", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 351, + "ordinal_hex": "0x0000015F", + "name": "XLFPoolReleaseLock", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 355, + "ordinal_hex": "0x00000163", + "name": "XLFStartLog", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 356, + "ordinal_hex": "0x00000164", + "name": "XLFStartUserLog", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 357, + "ordinal_hex": "0x00000165", + "name": "XLFInitializeLog", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 358, + "ordinal_hex": "0x00000166", + "name": "XLFInitializeUserLog", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 360, + "ordinal_hex": "0x00000168", + "name": "XLFEndLog", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 361, + "ordinal_hex": "0x00000169", + "name": "XLFLogPrint", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 362, + "ordinal_hex": "0x0000016A", + "name": "XLFLogPrintV", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 363, + "ordinal_hex": "0x0000016B", + "name": "XLFLogBuffer", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 364, + "ordinal_hex": "0x0000016C", + "name": "XLFLogMessageStats", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 370, + "ordinal_hex": "0x00000172", + "name": "XLockFreeGetErrorHandler", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 371, + "ordinal_hex": "0x00000173", + "name": "XLockFreeSetErrorHandler", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 372, + "ordinal_hex": "0x00000174", + "name": "DmExecuteThreadRPC", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + }, + { + "module": "xbdm", + "ordinal": 373, + "ordinal_hex": "0x00000175", + "name": "DmGetDebuggerConnection", + "type": "function", + "status": "not_implemented", + "tags": [], + "category": "", + "source_file": "" + } + ] + } + } +} \ No newline at end of file diff --git a/src/exports.rs b/src/exports.rs index dbce3ea..9fb8369 100644 --- a/src/exports.rs +++ b/src/exports.rs @@ -1,13 +1,15 @@ /// Xbox 360 system export database. /// -/// Parses the embedded `doc/xbox360_exports.md` at first access and provides +/// Parses the embedded `doc/xbox360_exports.json` at first access and provides /// ordinal-to-name lookups for xboxkrnl.exe, xam.xex, and xbdm.xex. use std::collections::HashMap; use std::sync::OnceLock; +use serde::Deserialize; + static EXPORT_DB: OnceLock = OnceLock::new(); -const EXPORTS_MD: &str = include_str!("../doc/xbox360_exports.md"); +const EXPORTS_JSON: &str = include_str!("../doc/xbox360_exports.json"); /// Information about a single Xbox 360 system export. #[derive(Debug, Clone)] @@ -46,77 +48,52 @@ pub fn lookup(library: &str, ordinal: u16) -> Option<&'static ExportInfo> { } fn get_db() -> &'static ExportDatabase { - EXPORT_DB.get_or_init(|| parse_exports_md(EXPORTS_MD)) + EXPORT_DB.get_or_init(|| parse_exports_json(EXPORTS_JSON)) } -/// Parses the markdown export database into a lookup structure. -/// -/// Expected format per module section: -/// ```text -/// ## module_name (filename.exe) -/// ... -/// | 0xNNN | FunctionName | function | status | ... | -/// ``` -fn parse_exports_md(md: &str) -> ExportDatabase { +#[derive(Deserialize)] +struct JsonRoot { + modules: HashMap, +} + +#[derive(Deserialize)] +struct JsonModule { + file: String, + exports: Vec, +} + +#[derive(Deserialize)] +struct JsonExport { + ordinal: u32, + name: String, + #[serde(rename = "type")] + export_type: String, +} + +fn parse_exports_json(json: &str) -> ExportDatabase { + let root: JsonRoot = serde_json::from_str(json).expect("invalid exports JSON"); let mut modules: HashMap> = HashMap::new(); - let mut current_file: Option = None; - for line in md.lines() { - // Detect section headers: "## xboxkrnl (xboxkrnl.exe)" - if let Some(rest) = line.strip_prefix("## ") { - if let (Some(paren_start), Some(paren_end)) = - (rest.find('('), rest.find(')')) - { - let filename = rest[paren_start + 1..paren_end].trim().to_ascii_lowercase(); - current_file = Some(filename); - } else { - current_file = None; - } - continue; + for module in root.modules.values() { + let file_key = module.file.to_ascii_lowercase(); + let entries = modules.entry(file_key).or_default(); + + for export in &module.exports { + let ordinal = export.ordinal as u16; + entries.insert( + ordinal, + ExportInfo { + ordinal, + name: export.name.clone(), + is_function: export.export_type == "function", + }, + ); } - - // Parse table rows: "| 0xNNN | Name | function/variable | ... |" - let Some(ref file) = current_file else { - continue; - }; - if !line.starts_with("| 0x") { - continue; - } - - let cols: Vec<&str> = line.split('|').collect(); - // cols[0] is empty (before first |), cols[1] = ordinal, cols[2] = name, cols[3] = type - if cols.len() < 4 { - continue; - } - - let ordinal_str = cols[1].trim(); - let name = cols[2].trim(); - let type_str = cols[3].trim(); - - let Some(ordinal) = parse_hex_ordinal(ordinal_str) else { - continue; - }; - - let entry = ExportInfo { - ordinal, - name: name.to_string(), - is_function: type_str == "function", - }; - - modules - .entry(file.clone()) - .or_default() - .insert(ordinal, entry); } ExportDatabase { modules } } -fn parse_hex_ordinal(s: &str) -> Option { - let hex = s.strip_prefix("0x").or_else(|| s.strip_prefix("0X"))?; - u16::from_str_radix(hex, 16).ok() -} - #[cfg(test)] mod tests { use super::*; @@ -182,13 +159,4 @@ mod tests { fn test_lookup_unknown_library() { assert!(lookup("nonexistent.dll", 0x001).is_none()); } - - #[test] - fn test_parse_hex_ordinal() { - assert_eq!(parse_hex_ordinal("0x001"), Some(1)); - assert_eq!(parse_hex_ordinal("0x3A3"), Some(0x3A3)); - assert_eq!(parse_hex_ordinal("0xFFFF"), Some(0xFFFF)); - assert_eq!(parse_hex_ordinal("invalid"), None); - assert_eq!(parse_hex_ordinal(""), None); - } }