Skeleton for xdb.

This commit is contained in:
Ben Vanik
2014-08-09 10:32:16 -07:00
parent ff8361e5a9
commit cebf595958
11 changed files with 200 additions and 1 deletions

10
src/xdb/sources.gypi Normal file
View File

@@ -0,0 +1,10 @@
# Copyright 2014 Ben Vanik. All Rights Reserved.
{
'sources': [
'xdb.cc',
'xdb.h',
],
'includes': [
],
}

13
src/xdb/xdb.cc Normal file
View File

@@ -0,0 +1,13 @@
/**
******************************************************************************
* Xenia : Xbox 360 Emulator Research Project *
******************************************************************************
* Copyright 2014 Ben Vanik. All rights reserved. *
* Released under the BSD license - see LICENSE in the root for more details. *
******************************************************************************
*/
#include <xdb/xdb.h>
void test() {
}

18
src/xdb/xdb.h Normal file
View File

@@ -0,0 +1,18 @@
/**
******************************************************************************
* Xenia : Xbox 360 Emulator Research Project *
******************************************************************************
* Copyright 2014 Ben Vanik. All rights reserved. *
* Released under the BSD license - see LICENSE in the root for more details. *
******************************************************************************
*/
#ifndef XDB_H_
#define XDB_H_
#include <xenia/common.h>
#include <xenia/core.h>
#include <xenia/emulator.h>
#include <xenia/xbox.h>
#endif // XDB_H_