#Uses Comment
Syntax
'#Uses "macropath" [Only:[Win32|Win64]] ...
-or-
'$Include: "macropath"
Group
Description
The Uses comment indicates that the current macro uses Public symbols from another macro. The Only option indicates that the macro is only loaded for that Windows platform.
Example
'Macro A.ams
'#Uses "B.ams"
Sub Main
Debug.Print BFunc$("Hello") '"HELLO"
End Sub