1/*
2 * Copyright (c) 1999, 2021 Tanuki Software, Ltd.
3 * http://www.tanukisoftware.com
4 * All rights reserved.
5 *
6 * This software is the proprietary information of Tanuki Software.
7 * You shall use it only in accordance with the terms of the
8 * license agreement you entered into with Tanuki Software.
9 * http://wrapper.tanukisoftware.org/doc/english/licenseOverview.html
10 */
11
12
13
14#ifdef WIN32
15#include <tchar.h>
16#include <windows.h>
17#endif
18
19#include "wrapper_i18n.h"
20
21/**
22 * wrapperinfo.c is built as part of the build process.  Ant creates this
23 *  file by making a copy of wrapperinfo.c.in, replacing tokens as it does
24 *  so.  If you need to make modifications to this file, the changes should
25 *  always be made to wrapperinfo.c.in.
26 */
27
28TCHAR *wrapperVersionRoot = TEXT("@version.root@");
29TCHAR *wrapperVersion = TEXT("@version@");
30TCHAR *wrapperBits = TEXT("@bits@");
31TCHAR *wrapperArch = TEXT("@dist.arch@");
32TCHAR *wrapperOS = TEXT("@dist.os@");
33TCHAR *wrapperReleaseDate = TEXT("20210104");
34TCHAR *wrapperReleaseTime = TEXT("0000");
35TCHAR *wrapperBuildDate = TEXT("@build.date@");
36TCHAR *wrapperBuildTime = TEXT("@build.time@");
37TCHAR *wrapperJavacTargetVersion = TEXT("@javac.target.version@");
38
39