mirror of
https://github.com/brian8544/turtle-wow.git
synced 2025-01-05 22:34:35 +00:00
59 lines
1.9 KiB
Plaintext
59 lines
1.9 KiB
Plaintext
/************************************************************************************
|
|
*
|
|
* D++, A Lightweight C++ library for Discord
|
|
*
|
|
* Copyright 2021 Craig Edwards and D++ contributors
|
|
* (https://github.com/brainboxdotcc/DPP/graphs/contributors)
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*
|
|
************************************************************************************/
|
|
|
|
#include <Winver.h>
|
|
|
|
VS_VERSION_INFO VERSIONINFO
|
|
FILEVERSION @DPP_VERSION_MAJOR@,@DPP_VERSION_MINOR@,@DPP_VERSION_PATCH@
|
|
PRODUCTVERSION @DPP_VERSION_MAJOR@,@DPP_VERSION_MINOR@,@DPP_VERSION_PATCH@
|
|
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
|
|
|
|
#ifdef _DEBUG
|
|
FILEFLAGS VS_FF_DEBUG
|
|
#else
|
|
FILEFLAGS 0x0L
|
|
#endif
|
|
|
|
FILEOS VOS_NT_WINDOWS32
|
|
FILETYPE VFT_DLL
|
|
FILESUBTYPE VFT2_UNKNOWN
|
|
|
|
BEGIN
|
|
BLOCK "StringFileInfo"
|
|
BEGIN
|
|
BLOCK "040904b0"
|
|
BEGIN
|
|
VALUE "CompanyName", "Brainbox.cc"
|
|
VALUE "FileDescription", "D++ - The lightweight C++ Discord API Library"
|
|
VALUE "FileVersion", "@DPP_VERSION@"
|
|
VALUE "ProductVersion", "@DPP_VERSION@"
|
|
VALUE "ProductName", "D++ Discord API Library"
|
|
VALUE "InternalName", "DPP"
|
|
VALUE "LegalCopyright", "Copyright (C) 2021 D++ contributors - Licensed under the Apache 2.0 License."
|
|
VALUE "OriginalFilename", "dpp.dll"
|
|
END
|
|
END
|
|
|
|
BLOCK "VarFileInfo"
|
|
BEGIN
|
|
VALUE "Translation", 0x409, 1200
|
|
END
|
|
END |