Advertisement
B1uscr34m

ts3defs.lua

Nov 26th, 2014
360
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 20.94 KB | None | 0 0
  1. --
  2. -- TeamSpeak 3 definitions
  3. --
  4.  
  5. local Visibility = {
  6.     ENTER_VISIBILITY = 0,
  7.     RETAIN_VISIBILITY = 1,
  8.     LEAVE_VISIBILITY = 2
  9. }
  10.  
  11. local ConnectStatus = {
  12.     STATUS_DISCONNECTED = 0,            -- There is no activity to the server, this is the default value
  13.     STATUS_CONNECTING = 1,              -- We are trying to connect, we haven't got a clientID yet, we haven't been accepted by the server
  14.     STATUS_CONNECTED = 2,               -- The server has accepted us, we can talk and hear and we got a clientID, but we don't have the channels and clients yet, we can get server infos (welcome msg etc.)
  15.     STATUS_CONNECTION_ESTABLISHING = 3, -- we are CONNECTED and we are visible
  16.     STATUS_CONNECTION_ESTABLISHED = 4   -- we are CONNECTED and we have the client and channels available
  17. }
  18.  
  19. local TalkStatus = {
  20.     STATUS_NOT_TALKING = 0,
  21.     STATUS_TALKING = 1,
  22.     STATUS_TALKING_WHILE_DISABLED = 2
  23. }
  24.  
  25. local SpeexCodec = {
  26.     CODEC_SPEEX_NARROWBAND = 0,     -- mono, 16bit,  8kHz, bitrate dependant on the quality setting
  27.     CODEC_SPEEX_WIDEBAND = 1,       -- mono, 16bit, 16kHz, bitrate dependant on the quality setting
  28.     CODEC_SPEEX_ULTRAWIDEBAND = 2,  -- mono, 16bit, 32kHz, bitrate dependant on the quality setting
  29.     CODEC_CELT_MONO = 3,            -- mono, 16bit, 48kHz, bitrate dependant on the quality setting
  30.     CODEC_DUMMY_MONO = 4            -- mono, 16bit, 48kHz, no compression (=> bitrate == 93.75 KiB/s!)
  31. }
  32.  
  33. local TextMessageTargetMode = {
  34.     TextMessageTarget_CLIENT = 1,
  35.     TextMessageTarget_CHANNEL = 2,
  36.     TextMessageTarget_SERVER = 3,
  37.     TextMessageTarget_MAX = 4
  38. }
  39.  
  40. local MuteInputStatus = {
  41.     MUTEINPUT_NONE = 0,
  42.     MUTEINPUT_MUTED = 1
  43. }
  44.  
  45. local MuteOutputStatus = {
  46.     MUTEOUTPUT_NONE = 0,
  47.     MUTEOUTPUT_MUTED = 1
  48. }
  49.  
  50. local HardwareInputStatus = {
  51.     HARDWAREINPUT_DISABLED = 0,
  52.     HARDWAREINPUT_ENABLED = 1
  53. }
  54.  
  55. local HardwareOutputStatus = {
  56.     HARDWAREOUTPUT_DISABLED = 0,
  57.     HARDWAREOUTPUT_ENABLED = 1
  58. }
  59.  
  60. local InputDeactivationStatus = {
  61.     INPUT_ACTIVE = 0,
  62.     INPUT_DEACTIVATED = 1
  63. }
  64.  
  65. local ClientProperties = {
  66.     CLIENT_UNIQUE_IDENTIFIER = 0,                -- automatically up-to-date for any client "in view", can be used to identify this particular client installation
  67.     CLIENT_NICKNAME = 1,                         -- automatically up-to-date for any client "in view"
  68.     CLIENT_VERSION = 2,                          -- for other clients than ourself, this needs to be requested (=> requestClientVariables)
  69.     CLIENT_PLATFORM = 3,                         -- for other clients than ourself, this needs to be requested (=> requestClientVariables)
  70.     CLIENT_FLAG_TALKING = 4,                     -- automatically up-to-date for any client that can be heard (in room / whisper)
  71.     CLIENT_INPUT_MUTED = 5,                      -- automatically up-to-date for any client "in view", this clients microphone mute status
  72.     CLIENT_OUTPUT_MUTED = 6,                     -- automatically up-to-date for any client "in view", this clients headphones/speakers mute status
  73.     CLIENT_OUTPUTONLY_MUTED = 7,                 -- automatically up-to-date for any client "in view", this clients headphones/speakers only mute status
  74.     CLIENT_INPUT_HARDWARE = 8,                   -- automatically up-to-date for any client "in view", this clients microphone hardware status (is the capture device opened?)
  75.     CLIENT_OUTPUT_HARDWARE = 9,                  -- automatically up-to-date for any client "in view", this clients headphone/speakers hardware status (is the playback device opened?)
  76.     CLIENT_INPUT_DEACTIVATED = 10,               -- only usable for ourself, not propagated to the network
  77.     CLIENT_IDLE_TIME = 11,                       -- internal use
  78.     CLIENT_DEFAULT_CHANNEL = 12,                 -- only usable for ourself, the default channel we used to connect on our last connection attempt
  79.     CLIENT_DEFAULT_CHANNEL_PASSWORD = 13,        -- internal use
  80.     CLIENT_SERVER_PASSWORD = 14,                 -- internal use
  81.     CLIENT_META_DATA = 15,                       -- automatically up-to-date for any client "in view", not used by TeamSpeak, free storage for sdk users
  82.     CLIENT_IS_MUTED = 16,                        -- only make sense on the client side locally, "1" if this client is currently muted by us, "0" if he is not
  83.     CLIENT_IS_RECORDING = 17,                    -- automatically up-to-date for any client "in view"
  84.     CLIENT_VOLUME_MODIFICATOR = 18,
  85.     CLIENT_ENDMARKER = 19,
  86.     CLIENT_DUMMY_1 = 19,                         -- (Must be the same as CLIENT_ENDMARKER)
  87.     CLIENT_DUMMY_2 = 20,
  88.     CLIENT_DUMMY_3 = 21,
  89.     CLIENT_DUMMY_4 = 22,
  90.     CLIENT_DUMMY_5 = 23,
  91.     CLIENT_DUMMY_6 = 24,
  92.     CLIENT_DUMMY_7 = 25,
  93.     CLIENT_DUMMY_8 = 26,
  94.     CLIENT_DUMMY_9 = 27,
  95.     CLIENT_KEY_OFFSET = 28,                      -- internal use
  96.     CLIENT_LAST_VAR_REQUEST = 29,                -- internal use
  97.     CLIENT_LOGIN_NAME = 30,                      -- used for serverquery clients, makes no sense on normal clients currently
  98.     CLIENT_LOGIN_PASSWORD = 31,                  -- used for serverquery clients, makes no sense on normal clients currently
  99.     CLIENT_DATABASE_ID = 32,                     -- automatically up-to-date for any client "in view", only valid with PERMISSION feature, holds database client id
  100.     CLIENT_CHANNEL_GROUP_ID = 33,                -- automatically up-to-date for any client "in view", only valid with PERMISSION feature, holds database client id
  101.     CLIENT_SERVERGROUPS = 34,                    -- automatically up-to-date for any client "in view", only valid with PERMISSION feature, holds all servergroups client belongs too
  102.     CLIENT_CREATED = 35,                         -- this needs to be requested (=> requestClientVariables), first time this client connected to this server
  103.     CLIENT_LASTCONNECTED = 36,                   -- this needs to be requested (=> requestClientVariables), last time this client connected to this server
  104.     CLIENT_TOTALCONNECTIONS = 37,                -- this needs to be requested (=> requestClientVariables), how many times this client connected to this server
  105.     CLIENT_AWAY = 38,                            -- automatically up-to-date for any client "in view", this clients away status
  106.     CLIENT_AWAY_MESSAGE = 39,                    -- automatically up-to-date for any client "in view", this clients away message
  107.     CLIENT_TYPE = 40,                            -- automatically up-to-date for any client "in view", determines if this is a real client or a server-query connection
  108.     CLIENT_FLAG_AVATAR = 41,                     -- automatically up-to-date for any client "in view", this client got an avatar
  109.     CLIENT_TALK_POWER = 42,                      -- automatically up-to-date for any client "in view", only valid with PERMISSION feature, holds database client id
  110.     CLIENT_TALK_REQUEST = 43,                    -- automatically up-to-date for any client "in view", only valid with PERMISSION feature, holds timestamp where client requested to talk
  111.     CLIENT_TALK_REQUEST_MSG = 44,                -- automatically up-to-date for any client "in view", only valid with PERMISSION feature, holds matter for the request
  112.     CLIENT_DESCRIPTION = 45,                     -- automatically up-to-date for any client "in view"
  113.     CLIENT_IS_TALKER = 46,                       -- automatically up-to-date for any client "in view"
  114.     CLIENT_MONTH_BYTES_UPLOADED = 47,            -- this needs to be requested (=> requestClientVariables)
  115.     CLIENT_MONTH_BYTES_DOWNLOADED = 48,          -- this needs to be requested (=> requestClientVariables)
  116.     CLIENT_TOTAL_BYTES_UPLOADED = 49,            -- this needs to be requested (=> requestClientVariables)
  117.     CLIENT_TOTAL_BYTES_DOWNLOADED = 50,          -- this needs to be requested (=> requestClientVariables)
  118.     CLIENT_IS_PRIORITY_SPEAKER = 51,             -- automatically up-to-date for any client "in view"
  119.     CLIENT_UNREAD_MESSAGES = 52,                 -- automatically up-to-date for any client "in view"
  120.     CLIENT_NICKNAME_PHONETIC = 53,               -- automatically up-to-date for any client "in view"
  121.     CLIENT_NEEDED_SERVERQUERY_VIEW_POWER = 54,   -- automatically up-to-date for any client "in view"
  122.     CLIENT_DEFAULT_TOKEN = 55,                   -- only usable for ourself, the default token we used to connect on our last connection attempt
  123.     CLIENT_ICON_ID = 56,                         -- automatically up-to-date for any client "in view"
  124.     CLIENT_IS_CHANNEL_COMMANDER = 57,            -- automatically up-to-date for any client "in view"
  125.     CLIENT_ENDMARKER_RARE = 58
  126. }
  127.  
  128. local ChannelProperties = {
  129.     CHANNEL_NAME = 0,                              -- Available for all channels that are "in view", always up-to-date
  130.     CHANNEL_TOPIC = 1,                             -- Available for all channels that are "in view", always up-to-date
  131.     CHANNEL_DESCRIPTION = 2,                       -- Must be requested (=> requestChannelDescription)
  132.     CHANNEL_PASSWORD = 3,                          -- not available client side
  133.     CHANNEL_CODEC = 4,                             -- Available for all channels that are "in view", always up-to-date
  134.     CHANNEL_CODEC_QUALITY = 5,                     -- Available for all channels that are "in view", always up-to-date
  135.     CHANNEL_MAXCLIENTS = 6,                        -- Available for all channels that are "in view", always up-to-date
  136.     CHANNEL_MAXFAMILYCLIENTS = 7,                  -- Available for all channels that are "in view", always up-to-date
  137.     CHANNEL_ORDER = 8,                             -- Available for all channels that are "in view", always up-to-date
  138.     CHANNEL_FLAG_PERMANENT = 9,                    -- Available for all channels that are "in view", always up-to-date
  139.     CHANNEL_FLAG_SEMI_PERMANENT = 10,              -- Available for all channels that are "in view", always up-to-date
  140.     CHANNEL_FLAG_DEFAULT = 11,                     -- Available for all channels that are "in view", always up-to-date
  141.     CHANNEL_FLAG_PASSWORD = 12,                    -- Available for all channels that are "in view", always up-to-date
  142.     CHANNEL_ENDMARKER = 13,
  143.     CHANNEL_DUMMY_0 = 13,                          -- (Must be the same as CHANNEL_ENDMARKER)
  144.     CHANNEL_DUMMY_1 = 14,
  145.     CHANNEL_DUMMY_2 = 15,
  146.     CHANNEL_DUMMY_3 = 16,
  147.     CHANNEL_DUMMY_4 = 17,
  148.     CHANNEL_DUMMY_5 = 18,
  149.     CHANNEL_DUMMY_6 = 19,
  150.     CHANNEL_DUMMY_7 = 20,
  151.     CHANNEL_DUMMY_8 = 21,
  152.     CHANNEL_DUMMY_9 = 22,
  153.     CHANNEL_FLAG_MAXCLIENTS_UNLIMITED = 23,       -- Available for all channels that are "in view", always up-to-date
  154.     CHANNEL_FLAG_MAXFAMILYCLIENTS_UNLIMITED = 24, -- Available for all channels that are "in view", always up-to-date
  155.     CHANNEL_FLAG_MAXFAMILYCLIENTS_INHERITED = 25, -- Available for all channels that are "in view", always up-to-date
  156.     CHANNEL_FLAG_ARE_SUBSCRIBED = 26,             -- Only available client side, stores whether we are subscribed to this channel
  157.     CHANNEL_FILEPATH = 27,                        -- not available client side, the folder used for file-transfers for this channel
  158.     CHANNEL_NEEDED_TALK_POWER = 28,               -- Available for all channels that are "in view", always up-to-date
  159.     CHANNEL_FORCED_SILENCE = 29,                  -- Available for all channels that are "in view", always up-to-date
  160.     CHANNEL_NAME_PHONETIC = 30,                   -- Available for all channels that are "in view", always up-to-date
  161.     CHANNEL_ICON_ID = 31,                         -- Available for all channels that are "in view", always up-to-date
  162.     CHANNEL_ENDMARKER_RARE = 32
  163. }
  164.  
  165. local VirtualServerProperties = {
  166.     VIRTUALSERVER_UNIQUE_IDENTIFIER = 0,                            -- available when connected, can be used to identify this particular server installation
  167.     VIRTUALSERVER_NAME = 1,                                         -- available and always up-to-date when connected
  168.     VIRTUALSERVER_WELCOMEMESSAGE = 2,                               -- available when connected,  (=> requestServerVariables)
  169.     VIRTUALSERVER_PLATFORM = 3,                                     -- available when connected
  170.     VIRTUALSERVER_VERSION = 4,                                      -- available when connected
  171.     VIRTUALSERVER_MAXCLIENTS = 5,                                   -- only available on request (=> requestServerVariables), stores the maximum number of clients that may currently join the server
  172.     VIRTUALSERVER_PASSWORD = 6,                                     -- not available to clients, the server password
  173.     VIRTUALSERVER_CLIENTS_ONLINE = 7,                               -- only available on request (=> requestServerVariables),
  174.     VIRTUALSERVER_CHANNELS_ONLINE = 8,                              -- only available on request (=> requestServerVariables),
  175.     VIRTUALSERVER_CREATED = 9,                                      -- available when connected, stores the time when the server was created
  176.     VIRTUALSERVER_UPTIME = 10,                                      -- only available on request (=> requestServerVariables), the time since the server was started
  177.     VIRTUALSERVER_ENDMARKER = 11,          
  178.     VIRTUALSERVER_DUMMY_0 = 11,                                     -- (Must be the same as VIRTUALSERVER_ENDMARKER)
  179.     VIRTUALSERVER_DUMMY_1 = 12,
  180.     VIRTUALSERVER_DUMMY_2 = 13,
  181.     VIRTUALSERVER_DUMMY_3 = 14,
  182.     VIRTUALSERVER_DUMMY_4 = 15,
  183.     VIRTUALSERVER_DUMMY_5 = 16,
  184.     VIRTUALSERVER_DUMMY_6 = 17,
  185.     VIRTUALSERVER_DUMMY_7 = 18,
  186.     VIRTUALSERVER_DUMMY_8 = 19,
  187.     VIRTUALSERVER_DUMMY_9 = 20,
  188.     VIRTUALSERVER_KEYPAIR = 21,                                     -- internal use
  189.     VIRTUALSERVER_HOSTMESSAGE = 22,                                 -- available when connected, not updated while connected
  190.     VIRTUALSERVER_HOSTMESSAGE_MODE = 23,                            -- available when connected, not updated while connected
  191.     VIRTUALSERVER_FILEBASE = 24,                                    -- not available to clients, stores the folder used for file transfers
  192.     VIRTUALSERVER_DEFAULT_SERVER_GROUP = 25,                        -- the client permissions server group that a new client gets assigned
  193.     VIRTUALSERVER_DEFAULT_CHANNEL_GROUP = 26,                       -- the channel permissions group that a new client gets assigned when joining a channel
  194.     VIRTUALSERVER_FLAG_PASSWORD = 27,                               -- available when connected, always up-to-date
  195.     VIRTUALSERVER_DEFAULT_CHANNEL_ADMIN_GROUP = 28,                 -- the channel permissions group that a client gets assigned when creating a channel
  196.     VIRTUALSERVER_MAX_DOWNLOAD_TOTAL_BANDWIDTH = 29,                -- only available on request (=> requestServerVariables)
  197.     VIRTUALSERVER_MAX_UPLOAD_TOTAL_BANDWIDTH = 30,                  -- only available on request (=> requestServerVariables)
  198.     VIRTUALSERVER_HOSTBANNER_URL = 31,                              -- available when connected, always up-to-date
  199.     VIRTUALSERVER_HOSTBANNER_GFX_URL = 32,                          -- available when connected, always up-to-date
  200.     VIRTUALSERVER_HOSTBANNER_GFX_INTERVAL = 33,                     -- available when connected, always up-to-date
  201.     VIRTUALSERVER_COMPLAIN_AUTOBAN_COUNT = 34,                      -- only available on request (=> requestServerVariables)
  202.     VIRTUALSERVER_COMPLAIN_AUTOBAN_TIME = 35,                       -- only available on request (=> requestServerVariables)
  203.     VIRTUALSERVER_COMPLAIN_REMOVE_TIME = 36,                        -- only available on request (=> requestServerVariables)
  204.     VIRTUALSERVER_MIN_CLIENTS_IN_CHANNEL_BEFORE_FORCED_SILENCE = 37,-- only available on request (=> requestServerVariables)
  205.     VIRTUALSERVER_PRIORITY_SPEAKER_DIMM_MODIFICATOR = 38,           -- available when connected, always up-to-date
  206.     VIRTUALSERVER_ID = 39,                                          -- available when connected
  207.     VIRTUALSERVER_ANTIFLOOD_POINTS_TICK_REDUCE = 40,                -- only available on request (=> requestServerVariables)
  208.     VIRTUALSERVER_ANTIFLOOD_POINTS_NEEDED_WARNING = 41,             -- only available on request (=> requestServerVariables)
  209.     VIRTUALSERVER_ANTIFLOOD_POINTS_NEEDED_KICK = 42,                -- only available on request (=> requestServerVariables)
  210.     VIRTUALSERVER_ANTIFLOOD_POINTS_NEEDED_BAN = 43,                 -- only available on request (=> requestServerVariables)
  211.     VIRTUALSERVER_ANTIFLOOD_POINTS_BAN_TIME = 44,                   -- only available on request (=> requestServerVariables)
  212.     VIRTUALSERVER_CLIENT_CONNECTIONS = 45,                          -- only available on request (=> requestServerVariables)
  213.     VIRTUALSERVER_QUERY_CLIENT_CONNECTIONS = 46,                    -- only available on request (=> requestServerVariables)
  214.     VIRTUALSERVER_HOSTBUTTON_TOOLTIP = 47,                          -- available when connected, always up-to-date
  215.     VIRTUALSERVER_HOSTBUTTON_URL = 48,                              -- available when connected, always up-to-date
  216.     VIRTUALSERVER_HOSTBUTTON_GFX_URL = 49,                          -- available when connected, always up-to-date
  217.     VIRTUALSERVER_QUERYCLIENTS_ONLINE = 50,                         -- only available on request (=> requestServerVariables)
  218.     VIRTUALSERVER_DOWNLOAD_QUOTA = 51,                              -- only available on request (=> requestServerVariables)
  219.     VIRTUALSERVER_UPLOAD_QUOTA = 52,                                -- only available on request (=> requestServerVariables)
  220.     VIRTUALSERVER_MONTH_BYTES_DOWNLOADED = 53,                      -- only available on request (=> requestServerVariables)
  221.     VIRTUALSERVER_MONTH_BYTES_UPLOADED = 54,                        -- only available on request (=> requestServerVariables)
  222.     VIRTUALSERVER_TOTAL_BYTES_DOWNLOADED = 55,                      -- only available on request (=> requestServerVariables)
  223.     VIRTUALSERVER_TOTAL_BYTES_UPLOADED = 56,                        -- only available on request (=> requestServerVariables)
  224.     VIRTUALSERVER_PORT = 57,                                        -- only available on request (=> requestServerVariables)
  225.     VIRTUALSERVER_AUTOSTART = 58,                                   -- only available on request (=> requestServerVariables)
  226.     VIRTUALSERVER_MACHINE_ID = 59,                                  -- only available on request (=> requestServerVariables)
  227.     VIRTUALSERVER_NEEDED_IDENTITY_SECURITY_LEVEL = 60,              -- only available on request (=> requestServerVariables)
  228.     VIRTUALSERVER_LOG_CLIENT = 61,                                  -- only available on request (=> requestServerVariables)
  229.     VIRTUALSERVER_LOG_QUERY = 62,                                   -- only available on request (=> requestServerVariables)
  230.     VIRTUALSERVER_LOG_CHANNEL = 63,                                 -- only available on request (=> requestServerVariables)
  231.     VIRTUALSERVER_LOG_PERMISSIONS = 64,                             -- only available on request (=> requestServerVariables)
  232.     VIRTUALSERVER_LOG_SERVER = 65,                                  -- only available on request (=> requestServerVariables)
  233.     VIRTUALSERVER_LOG_FILETRANSFER = 66,                            -- only available on request (=> requestServerVariables)
  234.     VIRTUALSERVER_MIN_CLIENT_VERSION = 67,                          -- only available on request (=> requestServerVariables)
  235.     VIRTUALSERVER_NAME_PHONETIC = 68,                               -- available when connected, always up-to-date
  236.     VIRTUALSERVER_ICON_ID = 69,                                     -- available when connected, always up-to-date
  237.     VIRTUALSERVER_RESERVED_SLOTS = 70,                              -- available when connected, always up-to-date
  238.     VIRTUALSERVER_TOTAL_PACKETLOSS_SPEECH = 71,                     -- only available on request (=> requestServerVariables)
  239.     VIRTUALSERVER_TOTAL_PACKETLOSS_KEEPALIVE = 72,                  -- only available on request (=> requestServerVariables)
  240.     VIRTUALSERVER_TOTAL_PACKETLOSS_CONTROL = 73,                    -- only available on request (=> requestServerVariables)
  241.     VIRTUALSERVER_TOTAL_PACKETLOSS_TOTAL = 74,                      -- only available on request (=> requestServerVariables)
  242.     VIRTUALSERVER_TOTAL_PING = 75,                                  -- only available on request (=> requestServerVariables)
  243.     VIRTUALSERVER_IP = 76,                                          -- internal use | contains only ONE binded ip
  244.     VIRTUALSERVER_WEBLIST_ENABLED = 77,                             -- only available on request (=> requestServerVariables)
  245.     VIRTUALSERVER_ENDMARKER_RARE = 78
  246. }
  247.  
  248. local LogTypes = {
  249.     LogType_NONE          = 0x0000,
  250.     LogType_FILE          = 0x0001,
  251.     LogType_CONSOLE       = 0x0002,
  252.     LogType_USERLOGGING   = 0x0004,
  253.     LogType_NO_NETLOGGING = 0x0008,
  254.     LogType_DATABASE      = 0x0010
  255. }
  256.  
  257. local LogLevel = {
  258.     LogLevel_CRITICAL = 0, -- these messages stop the program
  259.     LogLevel_ERROR = 1,    -- everything that is really bad, but not so bad we need to shut down
  260.     LogLevel_WARNING = 2,  -- everything that *might* be bad
  261.     LogLevel_DEBUG = 3,    -- output that might help find a problem
  262.     LogLevel_INFO = 4,     -- informational output, like "starting database version x.y.z"
  263.     LogLevel_DEVEL = 5     -- developer only output (will not be displayed in release mode)
  264. }
  265.  
  266. local PluginMenuType = {
  267.     PLUGIN_MENU_TYPE_GLOBAL = 0,
  268.     PLUGIN_MENU_TYPE_CHANNEL = 1,
  269.     PLUGIN_MENU_TYPE_CLIENT = 2
  270. }
  271.  
  272. -- Package exports
  273. ts3defs = {
  274.     Visibility = Visibility,
  275.     ConnectStatus = ConnectStatus,
  276.     TalkStatus = TalkStatus,
  277.     SpeexCodec = SpeexCodec,
  278.     TextMessageTargetMode = TextMessageTargetMode,
  279.     MuteInputStatus = MuteInputStatus,
  280.     MuteOutputStatus = MuteOutputStatus,
  281.     HardwareInputStatus = HardwareInputStatus,
  282.     HardwareOutputStatus = HardwareOutputStatus,
  283.     InputDeactivationStatus = InputDeactivationStatus,
  284.     ClientProperties = ClientProperties,
  285.     ChannelProperties = ChannelProperties,
  286.     VirtualServerProperties = VirtualServerProperties,
  287.     LogTypes = LogTypes,
  288.     LogLevel = LogLevel,
  289.     PluginMenuType = PluginMenuType
  290. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement