Next Prev Up Top Contents Index

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 .

The keyword format indicates the format in which the item is being requested. By default, only text transfers are supported (and the format argument 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 Reference Manual - 25 Jul 2003

Next Prev Up Top Contents Index