1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-08 14:55:12 +00:00
QB64-PE/tests/compile_tests/declare_library_external/test.bas

20 lines
287 B
QBasic
Raw Normal View History

$CONSOLE:ONLY
$IF WIN THEN
' Windows can't use regular DECLARE LIBRARY to link against a dll, just skip this test
PRINT 5
$ELSE
DECLARE LIBRARY "./lib"
FUNCTION add_values&(BYVAL v1 AS LONG, BYVAL v2 as LONG)
END DECLARE
result = add_values&(2, 3)
PRINT result
$END IF
SYSTEM