18 lines
379 B
Plaintext
18 lines
379 B
Plaintext
#ifndef WUFUC_RCH_INCLUDED
|
|
#define WUFUC_RCH_INCLUDED
|
|
#pragma once
|
|
#ifndef BUILD_COMMIT_VERSION
|
|
#define BUILD_COMMIT_VERSION 0.8.0.0
|
|
#endif
|
|
#ifndef BUILD_VERSION_COMMA
|
|
#define BUILD_VERSION_COMMA 0,8,0,0
|
|
#endif
|
|
#define STRINGIZE_(x) #x
|
|
#define STRINGIZE(x) STRINGIZE_(x)
|
|
#ifdef X64
|
|
#define WUFUC_DLL "wufuc64.dll"
|
|
#elif defined(X86)
|
|
#define WUFUC_DLL "wufuc32.dll"
|
|
#endif
|
|
#endif
|