From 6cf78f384faf2a14e15b9e83e83af85bc0bcdda1 Mon Sep 17 00:00:00 2001 From: chros73 Date: Sun, 26 Jun 2016 12:42:31 +0100 Subject: [PATCH] Adding variable types --- Scripting-Guide.md | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/Scripting-Guide.md b/Scripting-Guide.md index 29f215e..0e90485 100644 --- a/Scripting-Guide.md +++ b/Scripting-Guide.md @@ -17,4 +17,23 @@ Command | Short Description [execute](https://github.com/rakshasa/rtorrent/wiki/COMMAND-Execute) | Call operating system commands, possibly catching their output for use within rTorrent. [schedule](https://github.com/rakshasa/rtorrent/wiki/COMMAND-Scheduling) | Repeatedly execute commands, either in a given frequency, or at certain times. [system.*](https://github.com/rakshasa/rtorrent/wiki/COMMAND-System) | Commands related to the operating system and the XMLRPC API. -[ui.*](https://github.com/rakshasa/rtorrent/wiki/COMMAND-UserInterface) | These commands control aspects of the ‘curses’ UI. \ No newline at end of file +[ui.*](https://github.com/rakshasa/rtorrent/wiki/COMMAND-UserInterface) | These commands control aspects of the ‘curses’ UI. + + +## Variable types + +This is a summary about the possible variable types in [command_dynamic.cc](https://github.com/rakshasa/rtorrent/blob/master/src/command_dynamic.cc) (applies to v0.9.6). + + * private , const + + * multi + + * allowed subtypes: static , private , const , rlookup + + * simple + + * allowed subtypes: static , private , const + + * value , bool , string , list + + * allowed subtypes: static , private , const \ No newline at end of file