Added ProcessTargetString simple filter API (bug 4404, r=ds).

This commit is contained in:
David Anderson
2010-05-13 12:28:51 -07:00
parent fb28f4bcd0
commit 28217f10cb
11 changed files with 403 additions and 3 deletions
+8 -1
View File
@@ -52,7 +52,7 @@
#include <sp_vm_types.h>
#define SMINTERFACE_HANDLESYSTEM_NAME "IHandleSys"
#define SMINTERFACE_HANDLESYSTEM_VERSION 3
#define SMINTERFACE_HANDLESYSTEM_VERSION 4
/** Specifies no Identity */
#define DEFAULT_IDENTITY NULL
@@ -357,6 +357,13 @@ namespace SourceMod
const HandleSecurity *pSec,
const HandleAccess *pAccess,
HandleError *err) =0;
/**
* @brief Clones a handle, bypassing security checks.
*
* @return A new Handle_t, or 0 on failure.
*/
virtual Handle_t FastCloneHandle(Handle_t hndl) =0;
};
}