All Manuals > LispWorks® User Guide and Reference Manual > 51 The DDE server interface

dde-server-poke Generic Function

Summary

Called when a poke transaction is received.

Package

win32

Signature

dde-server-poke server topic item data &key format &allow-other-keys => successp

Arguments
server
A server object.
topic
A topic object.
item
A string.
data
A string.
format
A keyword.
Values
successp
A boolean.
Description

The generic function dde-server-poke is called in response to a poke transaction. A method specializing on the classes of server and topic should poke the data given by data into the item specified by item.

format indicates the format in which the item is being requested. By default, only text transfers are supported (and format will have the value :text).

The set of supported formats may be extended in future releases, so applications should always check the value of the format parameter and reject transactions which use formats not supported by the application.

If the poke transaction is successful, non-nil should be returned, and nil should be returned for failure.

See also

dde-poke
dde-request
dde-server-request


LispWorks® User Guide and Reference Manual - 01 Dec 2021 19:31:10