annotate lua/test/design.lua @ 34:2682a627168c
- breaking changes:
* restrict 'Z' conversions to immutable types
* restrict 'p' to mutable types (and handles)
author |
Tassilo Philipp |
date |
Sun, 12 Apr 2020 19:37:37 +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
|