51 lines
2.0 KiB
C
51 lines
2.0 KiB
C
/*
|
|
* Glide64 - Glide video plugin for Nintendo 64 emulators.
|
|
* Copyright (c) 2002 Dave2001
|
|
* Copyright (c) 2003-2009 Sergey 'Gonetz' Lipski
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*/
|
|
#define STRINGIZE2(s) #s
|
|
#define STRINGIZE(s) STRINGIZE2(s)
|
|
|
|
#define VERSION_MAJOR 2
|
|
#define VERSION_MINOR 1
|
|
#define VERSION_REVISION 2
|
|
#define VERSION_BUILD 9999
|
|
|
|
#define VER_FILE_DESCRIPTION_STR "Glide 64 for Project64"
|
|
#define VER_FILE_VERSION VERSION_MAJOR, VERSION_MINOR, VERSION_REVISION, VERSION_BUILD
|
|
#define VER_FILE_VERSION_STR STRINGIZE(VERSION_MAJOR) \
|
|
"." STRINGIZE(VERSION_MINOR) \
|
|
"." STRINGIZE(VERSION_REVISION) \
|
|
"." STRINGIZE(VERSION_BUILD) \
|
|
|
|
#define VER_PRODUCTNAME_STR "Glide64"
|
|
#define VER_PRODUCT_VERSION VER_FILE_VERSION
|
|
#define VER_PRODUCT_VERSION_STR VER_FILE_VERSION_STR
|
|
#define VER_ORIGINAL_FILENAME_STR VER_PRODUCTNAME_STR ".dll"
|
|
#define VER_INTERNAL_NAME_STR VER_PRODUCTNAME_STR
|
|
#define VER_COPYRIGHT_STR "Copyright (C) 2013"
|
|
|
|
#ifdef _DEBUG
|
|
#define VER_VER_DEBUG VS_FF_DEBUG
|
|
#else
|
|
#define VER_VER_DEBUG 0
|
|
#endif
|
|
|
|
#define VER_FILEOS VOS_NT_WINDOWS32
|
|
#define VER_FILEFLAGS VER_VER_DEBUG
|
|
#define VER_FILETYPE VFT_DLL
|