Plugin:MirLua/pl: Difference between revisions

From Miranda NG
Plugin:MirLua/pl
Jump to navigation Jump to search
(Updating to match new version of source page)
(Updating to match new version of source page)
 
(One intermediate revision by the same user not shown)
Line 68: Line 68:
== Przykłady ==
== Przykłady ==


{{Content:MirLua/Examples}}
[[Special:PrefixIndex/Content:MirLua/Examples/|Some examples]].
 
<!-- Todo use this after https://github.com/ProfessionalWiki/SubPageList/issues/74 will be fixed
{{Content:MirLua/Examples}} -->


== Zewnętrzne linki ==
== Zewnętrzne linki ==

Latest revision as of 17:54, 28 September 2023

MirLua
MirLua
Nazwa pliku MirLua.dll
Autor Miranda NG team
Pobierz
Wersja stabilna: 32-bit, 64-bit
Wersja rozwojowa: 32-bit, 64-bit

Poszerza funkcjonalność Mirandy NG dzięki skryptom Lua.

Lua

Wtyczka używa Lua 5.3.4, która jest dołączana jako biblioteka dynamiczna lua53.dll.

Dodatkowe funkcje

toansi

Encodes lua utf-8 string to ansi. It can be useful for passing string as parameter to ansi function.

m.CallService('mRadio/Import', 0, toansi(m.Parse('%miranda_path%\\Plugins\\mradio.ini')))

Also it has a short version a.

m.CallService('DB/Ini/ImportFile', 0, a'import\\autoexec.ini')

toucs2

Same as toansi but for utf-16. Also it has a short version u.

tonumber

If it receives light userdata parameter then returns it address as number, otherwise uses standard lua tonumber behavior.

topointer

Converts lua types bool, number, string to light userdata.

string.interpolate

Provides a more readable and convenient syntax to format string output.

local h = 'Hello' print('{h}, {w}!' % {w = 'World'})

Moduły wewnętrzne


Przykłady

Some examples.


Zewnętrzne linki