blob: 15cbed836d88d2491645601f888b755b552b5f36 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include "rvl/OS.h" // IWYU pragma: export
namespace {
const char *NW4R_LYT_Version_ = "<< NW4R - LYT \tfinal build: Mar 15 2010 02:17:33 (0x4302_158) >>";
}
namespace nw4r {
namespace lyt {
void LytInit() {
OSRegisterVersion(NW4R_LYT_Version_);
OSInitFastCast();
}
} // namespace lyt
} // namespace nw4r
|