annotate lua/test/design.lua @ 18:3bfef07b0cd9
- cleanup of non-working java binding, restart work, somewhat different interface
author |
cslag |
date |
Wed, 30 Mar 2016 02:05:06 +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
|