15 lines
387 B
C++
15 lines
387 B
C++
// File: crn_core.cpp
|
|
// This software is in the public domain. Please see license.txt.
|
|
#include "crn_core.h"
|
|
|
|
#if CRNLIB_USE_WIN32_API
|
|
#include "crn_winhdr.h"
|
|
#endif
|
|
|
|
namespace crnlib
|
|
{
|
|
const char *g_copyright_str = "This is Public Domain Software, please see license.txt.";
|
|
const char *g_sig_str = "C8cfRlaorj0wLtnMSxrBJxTC85rho2L9hUZKHcBL";
|
|
|
|
} // namespace crnlib
|