annotate lua/test/design.lua @ 43:1086ca649715
- fixed use after free issue with string handling (keeping strings as copy until after call)
author |
Tassilo Philipp |
date |
Wed, 15 Apr 2020 21:58:13 +0200 |
parents |
0cfcc391201f |
children |
|
rev |
line source |
0
|
1
|
|
2 -- loading libraries and resolve symbols in lua
|
|
3
|
|
4 local path = "/usr/local/lua/lib/libluadc.so"
|
|
5 dclib = loadlib("luadc", "luaopen_dc")
|
|
6 dclib()
|
|
7
|
|
8
|
|
9 dc.load("bla")
|
|
10 dc.find("hallo")
|
|
11
|
|
12 callpad = dc.newcallvm(4096)
|
|
13 callpad.mode("__cdecl")
|
|
14 callpad(f,"iSSi)v",0,"hello","world",0)
|
|
15
|
|
16
|
|
17
|