mirror of
https://github.com/xenia-project/xenia.git
synced 2025-04-02 11:02:16 -04:00
14 lines
380 B
C++
14 lines
380 B
C++
// File: crn_core.cpp
|
|
// See Copyright Notice and license at the end of inc/crnlib.h
|
|
#include "crn_core.h"
|
|
|
|
#if CRNLIB_USE_WIN32_API
|
|
#include "crn_winhdr.h"
|
|
#endif
|
|
|
|
namespace crnlib
|
|
{
|
|
const char *g_copyright_str = "Copyright (c) 2010-2012 Rich Geldreich and Tenacious Software LLC";
|
|
const char *g_sig_str = "C8cfRlaorj0wLtnMSxrBJxTC85rho2L9hUZKHcBL";
|
|
|
|
} // namespace crnlib
|