fixed am48881

This commit is contained in:
Christian Hammacher 2007-01-02 13:04:56 +00:00
parent d1c42751cd
commit c5ccf7d2c8

View File

@ -618,13 +618,14 @@ native get_pluginsnum();
* param2 name of plugin (all depends on flags). * param2 name of plugin (all depends on flags).
* Flags: * Flags:
* "a" - pause whole plugin. * "a" - pause whole plugin.
* "b" - pause function.
* "c" - look outside the plugin (by given plugin name). * "c" - look outside the plugin (by given plugin name).
* "d" - set "stopped" status when pausing whole plugin. * "d" - set "stopped" status when pausing whole plugin.
* "e" - set "locked" status when pausing whole plugin.
* In this status plugin is unpauseable. * In this status plugin is unpauseable.
* Example: pause("ac","myplugin.amxx") * Example: pause("ac","myplugin.amxx")
* pause("bc","myfunc","myplugin.amxx") */ *
* Note: There used to be the b and e flags as well,
* which have been deprecated and are no longer used.
*/
native pause(flag[], const param1[]="",const param2[]=""); native pause(flag[], const param1[]="",const param2[]="");
/* Unpauses function or plugin. /* Unpauses function or plugin.