mirror of
https://github.com/K-Kentaro-dev/Nim_for_AviUtl
synced 2026-01-01 23:11:06 +00:00
No description
| example | ||
| src | ||
| tests | ||
| Nim_for_AviUtl.nimble | ||
| README.md | ||
This is a library for developing AviUtl's dll script.
How to install
nimble install Nim_for_Aviutl
How to use
This is the template for creating a DLL script.
import luanim51
import Nim_for_Aviutl
# (funcname)
makeAviUtlfunc(example_func):
proc example_func(L: ptr lua_State): cint {.cdecl, exportc.} =
return 1
There are detailed examples in /example.
Attention
Please place the nim.cfg file located in /src or /example directly within your project directory.
This is because the compilation options cannot be specified within this library alone.