Initial experiment with new kernel export format.

This commit is contained in:
Ben Vanik
2015-06-01 18:19:32 -07:00
parent 225bb74316
commit 23826fa957
7 changed files with 633 additions and 350 deletions

View File

@@ -0,0 +1,22 @@
/**
******************************************************************************
* 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. *
******************************************************************************
*/
#include "xenia/kernel/util/shim_utils.h"
namespace xe {
namespace kernel {
namespace shim {
thread_local StringBuffer string_buffer_;
StringBuffer* thread_local_string_buffer() { return &string_buffer_; }
} // namespace shim
} // namespace kernel
} // namespace xe