Properly parsing resource infos and implementing XexGetModuleSection.

This commit is contained in:
Ben Vanik
2014-01-19 00:46:46 -08:00
parent d22b59555e
commit 0bc49621d4
8 changed files with 100 additions and 36 deletions

View File

@@ -33,3 +33,9 @@ XModule::XModule(KernelState* kernel_state, const char* path) :
XModule::~XModule() {
}
X_STATUS XModule::GetSection(
const char* name,
uint32_t* out_section_data, uint32_t* out_section_size) {
return X_STATUS_UNSUCCESSFUL;
}