Jump to content

Call a function in a shared library: Difference between revisions

Added BBC BASIC
(add link to Delphi for pascal)
(Added BBC BASIC)
Line 115:
dllclient.ahk
<lang AutoHotkey>Msgbox, hello from client</lang>
 
=={{header|BBC BASIC}}==
{{works with|BBC BASIC for Windows}}
The following shared libraries are automatically available: ADVAPI32.DLL, COMCTL32.DLL, COMDLG32.DLL, GDI32.DLL, KERNEL32.DLL, SHELL32.DLL, USER32.DLL and WINMM.DLL.
<lang bbcbasic> SYS "MessageBox", @hwnd%, "This is a test message", 0, 0
</lang>
 
=={{header|C}}==
Cookies help us deliver our services. By using our services, you agree to our use of cookies.