Sends a command string to a specified conversation.
win32
dde-execute-command conversation command arg-list &key errorp => result
conversation⇩ |
A conversation object. |
command⇩ |
A string or symbol. |
arg-list⇩ |
A list of strings, integers, and floats. |
errorp⇩ |
A boolean. |
result |
A boolean. |
The function dde-execute-command
sends a command string to the conversation specified by conversation. The command string consists of command and arg-list, which are combined using the appropriate argument-marshalling conventions. By default, the syntax is:
[command(arg1,arg2,...)]
On success, this function returns a result of t
. On failure, the behavior depends on errorp. If errorp is t
(the default value), LispWorks signals an error. If it is nil
, the function returns nil
to indicate failure.
LispWorks® User Guide and Reference Manual - 01 Dec 2021 19:31:09