Added video submodule for xboxkrnl and xam modules.

This commit is contained in:
Rick Gibbed
2013-05-26 22:42:07 -07:00
parent 9eadffe461
commit 78ee6c9ee9
7 changed files with 17 additions and 8 deletions

View File

@@ -10,5 +10,7 @@
'xam_state.cc',
'xam_state.h',
'xam_table.inc',
'xam_video.cc',
'xam_video.h',
],
}

View File

@@ -42,6 +42,7 @@ XamModule::XamModule(Runtime* runtime) :
// Register all exported functions.
RegisterInfoExports(export_resolver_.get(), xam_state.get());
RegisterVideoExports(export_resolver_.get(), xam_state.get());
}
XamModule::~XamModule() {

View File

@@ -31,6 +31,7 @@ extern XamState* shared_xam_state_;
// Registration functions, one per file.
void RegisterInfoExports(ExportResolver* export_resolver, XamState* state);
void RegisterVideoExports(ExportResolver* export_resolver, XamState* state);
} // namespace xam