Stubs for XLIVEBASE.

Fixes #159.
This commit is contained in:
Ben Vanik
2015-02-11 15:24:47 -08:00
parent 31b09f5aac
commit 31bec99cbb
6 changed files with 100 additions and 2 deletions

View File

@@ -0,0 +1,35 @@
/**
******************************************************************************
* Xenia : Xbox 360 Emulator Research Project *
******************************************************************************
* Copyright 2015 Ben Vanik. All rights reserved. *
* Released under the BSD license - see LICENSE in the root for more details. *
******************************************************************************
*/
#ifndef XENIA_KERNEL_XBOXKRNL_APPS_XLIVEBASE_APP_H_
#define XENIA_KERNEL_XBOXKRNL_APPS_XLIVEBASE_APP_H_
#include "xenia/common.h"
#include "xenia/kernel/app.h"
#include "xenia/kernel/kernel_state.h"
namespace xe {
namespace kernel {
namespace apps {
class XXLiveBaseApp : public XApp {
public:
XXLiveBaseApp(KernelState* kernel_state);
X_RESULT DispatchMessageSync(uint32_t message, uint32_t buffer_ptr,
uint32_t buffer_length) override;
private:
};
} // namespace apps
} // namespace kernel
} // namespace xe
#endif // XENIA_KERNEL_XBOXKRNL_APPS_XLIVEBASE_APP_H_