Description
Optional Named Arguments
Alias(name)
Specifies a quoted name that you can include if you don’t like the name encoded in the DLL.
Arg(type, <description>, <access mode>, <array>)
Arg can appear multiple times, once for each argument to be sent to the function.
type is one of these keywords that specifies the argument type: "Int8", "UInt8", "Int16", "UInt16", "Int32", "UInt32", "Int64", "UInt64", "Float", "Double", "Ansiquoted string", "Unicodequoted string", "Struct", "IntPtr", "UIntPtr", or "ObjPtr".
description is a quoted string that describes the argument for reference.
access mode is an optional keyword that specifies how the argument is passed. "input" specifies that the argument is passed by value. "output" specifies that the argument is passed by address with the initial value undefined. "update" specifies that the argument is passed by reference and the value of the JSL variable is set as the initial value. The default value is "input".
array is an optional keyword. It is valid only if the type is specified as "Double" and the access mode is specified as either "input" or "update". Specifies that the exported function expects an array of doubles.
Convention(calling convention)
Specifies the calling convention: "STDCALL" or "PASCAL", or "CDECL". The default value is "STDCALL". STDCALL and PASCAL are equivalent.
MaxArgs(n)
Specifies the maximum number of arguments that can be supplied.
MinArgs(n)
Specifies the minimum number of arguments that can be supplied.
Returns(type)
Specifies the data type that the function returns: "Int8", "UInt8", "Int16", "UInt16", "Int32", "UInt32", "Int64", "UInt64", "Float",
"Double", "Ansiquoted string", "Unicodequoted string", "Struct", "IntPtr", "UIntPtr", or "ObjPtr".
StackOrder(order)
Specifies the order in which arguments are placed on the stack when calling the function. Valid values are "L2R" (left-to-right) and "R2L" (right-to-left). The default value is "R2L".
StackPop(pop)
Specifies how the exported function expects the stack to be cleared after the function returns. Valid values are "CALLER" and "CALLEE". The default value is "CALLEE".
StructArg(Arg(...), <Arg(...)>, ..., <access mode>, <pack mode>, <description>)
Can appear multiple times. If an exported DLL function requires that a structure argument be passed in as an argument, use StructArg to declare the structure members. The Arg arguments use the same syntax as for Arg arguments to Declare Function (one for each structure member), an access mode indicator and a pack mode indicator.
access mode is an optional keyword that indicates whether the struct argument should be passed by value (input) or by reference (update).
pack mode is an optional integer that determines how the structure is packed. Valid values are 1, 2, 4, 8, and 16. The default value is 8.
description is an optional, quoted string that contains a description of the structure for reference.
Description
Required Argument
path
A quoted path that specifies where to load the DLL.
Optional Named Arguments
AutoDeclare(Boolean|"Quiet"|"Verbose")
AutoDeclare(1) and AutoDeclare("Verbose") write verbose messages to the log. AutoDeclare("Quiet") turns off log window messages. If you omit this option, verbose messages are written to the log.
Quiet|Verbose
When you use Declare Function, this option turns off log window messaging ("Quiet") or turns on log window messaging ("Verbose").