Update of /cvsroot/decaldev/source/Inject
In directory sc8-pr-cvs1:/tmp/cvs-serv10901
Modified Files:
Inject.rc
Log Message:
Central version resource
Index: Inject.rc
===================================================================
RCS file: /cvsroot/decaldev/source/Inject/Inject.rc,v
retrieving revision 1.44
retrieving revision 1.45
diff -C2 -d -r1.44 -r1.45
*** Inject.rc 15 May 2003 07:10:01 -0000 1.44
--- Inject.rc 27 May 2003 11:36:03 -0000 1.45
***************
*** 2,5 ****
--- 2,6 ----
//
#include "resource.h"
+ #include "..\Include\DecalVersion.h"
#define APSTUDIO_READONLY_SYMBOLS
***************
*** 73,78 ****
VS_VERSION_INFO VERSIONINFO
! FILEVERSION 2,5,0,4
! PRODUCTVERSION 2,5,0,4
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
--- 74,79 ----
VS_VERSION_INFO VERSIONINFO
! FILEVERSION DECAL_MAJOR, DECAL_MINOR, DECAL_BUGFIX, DECAL_RELEASE
! PRODUCTVERSION DECAL_MAJOR, DECAL_MINOR, DECAL_BUGFIX, DECAL_RELEASE
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
***************
*** 91,100 ****
VALUE "Comments", "Inject is the heart of Decal, it places itself within the memory space of the AC Client and is responsible for drawing the UI on the screen"
VALUE "FileDescription", "Inject Module"
! VALUE "FileVersion", "2, 5, 0, 4"
VALUE "InternalName", "Inject"
VALUE "LegalCopyright", "Copyright 2000, 2001"
VALUE "OriginalFilename", "Inject.DLL"
VALUE "ProductName", "Inject Module"
! VALUE "ProductVersion", "2, 5, 0, 4"
END
END
--- 92,101 ----
VALUE "Comments", "Inject is the heart of Decal, it places itself within the memory space of the AC Client and is responsible for drawing the UI on the screen"
VALUE "FileDescription", "Inject Module"
! VALUE "FileVersion", DECAL_VERSION_STRING
VALUE "InternalName", "Inject"
VALUE "LegalCopyright", "Copyright 2000, 2001"
VALUE "OriginalFilename", "Inject.DLL"
VALUE "ProductName", "Inject Module"
! VALUE "ProductVersion", DECAL_VERSION_STRING
END
END
|