Oops - broke the build by not committing this

--HG--
extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%401347
This commit is contained in:
David Anderson 2007-08-15 22:05:00 +00:00
parent f333264a50
commit dd4974b2af

View File

@ -44,7 +44,7 @@
#define SOURCEPAWN_ENGINE_API_VERSION 1
/** SourcePawn VM API Version */
#define SOURCEPAWN_VM_API_VERSION 3
#define SOURCEPAWN_VM_API_VERSION 4
#if !defined SOURCEMOD_BUILD
#define SOURCEMOD_BUILD
@ -212,6 +212,15 @@ namespace SourcePawn
* @return True if runnable, false otherwise.
*/
virtual bool IsRunnable() =0;
/**
* @brief Returns the function ID of this function.
*
* Note: This was added in API version 4.
*
* @return Function id.
*/
virtual funcid_t GetFunctionID() =0;
};