HostType()
説明
Lua 関数の HostType は、プラグインが実行されるデバイスのホストタイプを返します(例: "Console"、"onPC")。
引数
この関数は、引数を受け取りません。
戻り値
- string:
返される文字列は、デバイスのホストタイプです。
例
デバイスのホストタイプを Command Line History に出力します。
local function main()
Printf("HostType: "..HostType())
end
return main