Experimental addition to CreateMultiForward() for bcompat
This commit is contained in:
@ -277,6 +277,10 @@ enum {
|
||||
#define FP_STRING 2
|
||||
#define FP_ARRAY 4
|
||||
|
||||
#define FORWARD_ONLY_OLD 1
|
||||
#define FORWARD_ONLY_NEW 2
|
||||
#define FORWARD_ALL 3
|
||||
|
||||
#define MEXIT_ALL 1
|
||||
#define MEXIT_NORMAL 0
|
||||
#define MEXIT_NEVER -1
|
||||
|
@ -1016,11 +1016,20 @@ native set_addr_val(addr, val);
|
||||
|
||||
|
||||
/**
|
||||
* creates a multi-plugin forward.
|
||||
* Creates a multi-plugin forward.
|
||||
* Stop type must be one of the ET_ values in amxconst.inc
|
||||
* results will be > 0 for success
|
||||
*/
|
||||
native CreateMultiForward(const name[], stop_type, ...);
|
||||
|
||||
/**
|
||||
* Creates a multi-forward plugin that can filter between old/new plugins.
|
||||
* Old plugins are used by the AMX Mod backwards compatibility layer.
|
||||
* Stop type must be one of the ET_ values in amxconst.inc
|
||||
* Forward type must be one of the FORWARD_ values in amxconst.inc.
|
||||
*/
|
||||
native CreateMultiForwardEx(const name[], stop_type, forward_type, ...);
|
||||
|
||||
/**
|
||||
* Creates a forward for one plugin.
|
||||
* Results will be > 0 for success.
|
||||
|
Reference in New Issue
Block a user