diff options
Diffstat (limited to 'tests/tdllvar.nim')
-rwxr-xr-x | tests/tdllvar.nim | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/tdllvar.nim b/tests/tdllvar.nim new file mode 100755 index 000000000..ab767770c --- /dev/null +++ b/tests/tdllvar.nim @@ -0,0 +1,16 @@ +import os + +proc getDllName: string = + result = "mylib.dll" + if ExistsFile(result): return + result = "mylib2.dll" + if ExistsFile(result): return + quit("could not load dynamic library") + +proc myImport(s: cstring) {.cdecl, importc, dynlib: getDllName().} +proc myImport2(s: int) {.cdecl, importc, dynlib: getDllName().} + +myImport("test2") +myImport2(12) + + |