DLL Libraries: Difference between revisions

From QB64 Phoenix Edition Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 13: Line 13:
: '''Note:''' Filename needs to be [[CHR$]](0) terminated. QB64 [[STRING]]s are passed to external libraries as pointers to first character.
: '''Note:''' Filename needs to be [[CHR$]](0) terminated. QB64 [[STRING]]s are passed to external libraries as pointers to first character.


<center>'''Note: QB64 requires all DLL files to either be with the program or in the C:\WINDOWS\SYSTEM32 folder!'''</center>


''See also:''


{{PageSeeAlso}}
* [[DECLARE DYNAMIC LIBRARY]], [[BYVAL]]
* [[DECLARE DYNAMIC LIBRARY]], [[BYVAL]]
* [[_OFFSET]], [[_OFFSET (function)]] {{text|(lp, ptr and p names)}}
* [[_OFFSET]], [[_OFFSET (function)]] {{text|(lp, ptr and p names)}}
Line 21: Line 22:
* [[Libraries#C++_Variable_Types|C++ Variable Types]]
* [[Libraries#C++_Variable_Types|C++ Variable Types]]
* [[Port Access Libraries]] {{text|(COM or LPT)}}
* [[Port Access Libraries]] {{text|(COM or LPT)}}
<center>'''Note: QB64 requires all DLL files to either be with the program or in the C:\WINDOWS\SYSTEM32 folder!'''</center>




{{PageNavigation}}
{{PageNavigation}}

Revision as of 00:30, 29 January 2023

QB64 supports some DLL Library statements and functions. Currently the specified DLL file MUST either be in the Windows System folder (System32) or in the QB64 folder! NOTE: Use them at your own risk! QB64 CANNOT provide specific DLL Library information or support! When using unsupported DLL files use DECLARE DYNAMIC LIBRARY and the name of an inactive library without the .DLL extension. The following statement and function routine examples have been provided by members AS IS:


Examples

Example 1: This example plays Midi files using the playmidi32.dll documented here: Liberty Basic University. Download the following DLL file to your main QB64 folder: PlayMidi32.dll

DECLARE DYNAMIC LIBRARY "playmidi32"
    FUNCTION PlayMIDI& (filename AS STRING)
END DECLARE
result = PlayMIDI(".\samples\qb64\original\ps2battl.mid" + CHR$(0))
PRINT result
Note: Filename needs to be CHR$(0) terminated. QB64 STRINGs are passed to external libraries as pointers to first character.
Note: QB64 requires all DLL files to either be with the program or in the C:\WINDOWS\SYSTEM32 folder!


See also



Navigation:
Main Page with Articles and Tutorials
Keyword Reference - Alphabetical
Keyword Reference - By usage
Report a broken link