1
0
mirror of https://github.com/alliedmodders/metamod-source.git synced 2024-11-29 11:24:19 +01:00

more importing from 1.5.0

--HG--
branch : sourcemm-1.6.0
extra : convert_revision : svn%3Ac2935e3e-5518-0410-8daf-afa5dab7d4e3/branches/sourcemm-1.6.0%40424
This commit is contained in:
David Anderson 2007-09-18 20:40:08 +00:00
parent 2cf20b1d98
commit e51368d817
4 changed files with 13 additions and 6 deletions

View File

@ -1,7 +1,7 @@
[PRODUCT]
major = 1
minor = 6
revision = 2
revision = 0
[sourcemm]
folder = sourcemm

View File

@ -668,6 +668,7 @@ const char *CSmmAPI::GetUserMessage(int index, int *size)
return msg->name;
}
int CSmmAPI::GetVSPVersion()
{
return g_VspVersion;

View File

@ -117,6 +117,12 @@ extern PluginId g_PLID;
/** @brief ServerGameDLL version that is currently loaded */
extern int g_GameDllVersion;
/** @brief Highest IServerPluginCallbacks version that is supported by engine */
extern int g_VspVersion;
/** @brief IServerGameClients version the mod uses */
extern int g_GameClientsVersion;
extern bool bGameInit;
/** @brief Global CallClass for IServerGameDLL */

View File

@ -3,11 +3,11 @@
#ifndef _INCLUDE_SVN_VERSION_H_
#define _INCLUDE_SVN_VERSION_H_
#define SVN_PRODUCT_VERSION "1.4.2"
#define SVN_PRODUCT_VERSION "1.6.0"
#define SVN_REVISION 414
#define SVN_REVISION_STRING "414"
#define SVN_FILE_VERSION 1,4,2,414
#define SVN_FILE_VERSION_STRING "1.4.2.414"
#define SVN_REVISION 423
#define SVN_REVISION_STRING "423"
#define SVN_FILE_VERSION 1,6,0,423
#define SVN_FILE_VERSION_STRING "1.6.0.423"
#endif //_INCLUDE_SVN_VERSION_H_