L_InetSendFreeBitmapRsp

#include "l_bitmap.h"
#include "ltnet.h"

L_INT EXT_FUNCTION L_InetSendFreeBitmapRsp(hComputer, uCommandID, uExtra, pExtra, nStatus)

L_COMP hComputer;

/* handle to remote computer */

L_UINT uCommandID;

/* command id */

L_UINT uExtra;

/* length of extra data */

L_CHAR L_FAR * pExtra;

/* extra data */

L_INT nStatus;

/* status */

Sends a free bitmap response to a remote computer.

Parameter

Description

hComputer

Handle of remote computer to which command will be sent.

uCommandID

ID of command. Each command sent by a member of a connection should have a unique ID. Since a member of a connection may send several commands, this ID allows that member to identify when a specific command request has been completed.

uExtra

Length of extra data.

pExtra

Pointer to extra data associated with this response.

nStatus

Status of the original command. If the command completes successfully, this should be SUCCESS. Otherwise, it should be one of the Return Codes.

Returns

SUCCESS

This function was successful.

< 1

An error occurred. Refer to Return Codes.

Comments

This function sends a response to a free bitmap command that was sent from a remote computer using the L_InetSendFreeBitmapCmd.

To receive commands, provide an INETCOMMANDCALLBACK function. This function must be set using L_InetSetCommandCallback.

Required DLLs and Libraries

LTNET

For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application

See Also

Functions:

L_InetSendFreeBitmapCmd, INETCOMMANDCALLBACK, INETRESPONSECALLBACK

Topics:

Sending Commands and Responses

 

A Client-Server Diagram: Sending Commands and Responses

Example

For an example, refer to L_InetSetCommandCallback.