annotate lua/test/design.lua @ 22:4ee8d6aa7721
- java binding cleanup, exposed free functions (not very oo, this entire binding)
- java binding examples
author |
cslag |
date |
Sat, 09 Apr 2016 18:18:34 -0500 |
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
|