RosettaCodeData/Task/Call-a-foreign-language-function/Ol/call-a-foreign-language-function-2.ol

10 lines
250 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
(import (otus ffi))
(if (not (has? *features* 'Windows))
(print "The host platform is not a Windows!"))
(define self (load-dynamic-library "shlwapi.dll"))
(define strdup (self type-string "StrDupA" type-string))
(print (strdup "Hello World!"))