Uses of Class
com.jniwrapper.win32.dde.DdeResponse

Packages that use DdeResponse
com.jniwrapper.win32.dde The com.jniwrapper.win32.dde package contains classes, which allows you to interact with native applications via DDE technology. 
 

Uses of DdeResponse in com.jniwrapper.win32.dde
 

Fields in com.jniwrapper.win32.dde declared as DdeResponse
static DdeResponse DdeResponse.BUSY
          Notifies the client or service that the transaction has not been processed because the process was busy.
static DdeResponse DdeResponse.NOTPROCESSED
          Notifies the client or service that the transaction has not been processed.
static DdeResponse DdeResponse.PROCESSED
          Notifies the client or service that the transaction has been processed successfully.
 

Methods in com.jniwrapper.win32.dde that return DdeResponse
 DdeResponse DdeServiceEventHandler.execute(java.lang.String topic, java.lang.String command)
          Occurs when a client makes a command execution request.
 DdeResponse DdeServiceEventAdapter.execute(java.lang.String topic, java.lang.String command)
           
 DdeResponse DdeClientEventHandler.itemChanged(DdeItem item, byte[] data)
          Occurs when data of the item is changed.
 DdeResponse DdeClientEventAdapter.itemChanged(DdeItem item, byte[] data)
           
 DdeResponse DdeServiceEventHandler.pokeData(java.lang.String topic, DdeItem item, byte[] data)
          Occurs when a client sends data to the service.
 DdeResponse DdeServiceEventAdapter.pokeData(java.lang.String topic, DdeItem item, byte[] data)