Calls an external routine without any return code.
Category: | External Routines |
is an optional control string whose first character must be an asterisk (*), followed by any combination of the following characters:
I | prints the hexadecimal representations of all arguments to the CALL MODULE routine. You can use this option to help diagnose problems caused by incorrect arguments or attribute tables. If you specify the I option, the E option is implied. |
E | prints detailed error messages. Without the E option (or the I option, which supersedes it), the only error message that the CALL MODULE routine generates is “Invalid argument to function,” which is usually not enough information to determine the cause of the error. The E option is useful for a production environment, while the I option is preferable for a development or debugging environment. |
H | provides brief help information about the syntax of the CALL MODULE routine, the attribute file format, and suggested SAS formats and informats. |
changi
routine from the TRYMOD.DLL module on a Windows
platform. Use the following attribute table:
Beep
routine, which is part of the Win32 API in the
KERNEL32 Dynamic Link Library on a Windows platform. Use the following
attribute table:
routine Beep minarg=2 maxarg=2 stackpop=called callseq=byvalue module=kernel32; arg 1 num format=pib4.; arg 2 num format=pib4.;