home *** CD-ROM | disk | FTP | other *** search
- TABLE OF CONTENTS
-
- apilib.library/APIMountClient
- apilib.library/APICloseClient
- apilib.library/APIBriefClient
- apilib.library/APIFree
-
- apilib.library/APIMountClient apilib.library/APIMountClient
-
- NAME
- APIMountClient - start scanner
-
- SYNOPSIS
- description = APIMountClient(apiMsg, args)
-
- struct APIClient *description = APIMountClient(struct APIMessage *, char *)
- D0 A0 A1
- FUNCTION
- This function is called by the host application once for each of its
- instances (e.g. windows) interested in using the client. The client
- is expected to return a client description (may include a container
- request) or NULL to signal an error. The client description is used
- as handle during all subsequent client calls.
-
- INPUTS
- apiMsg - API message
- args - additional arguments or NULL
-
- RESULTS
- client description or NULL
-
- SEE ALSO
-
- BUGS
-
- apilib.library/APICloseClient apilib.library/APICloseClient
-
- NAME
- APICloseClient - Announce removal of an instance using the client
-
- SYNOPSIS
- APICloseClient(handle, apiMsg)
-
- void CloseClient(struct APIClient *, struct APIMessage *)
- D0 A0 A1
-
- FUNCTION
- This function is called by the host application if a host instance
- (e.g. a window) using the client is terminated. The client is supposed
- to free ressources related to that instance.
-
- INPUTS
- handle - handle obtained by APIMountClient()
- apiMsg - API message
-
- RESULTS
-
- SEE ALSO
- APIMountClient
-
- BUGS
-
- apilib.library/APIBriefClient apilib.library/APIBriefClient
-
- NAME
- APIBriefClient - notify client
-
- SYNOPSIS
- APIBriefClient(handle, apiMsg)
-
- void APIBriefClient(struct APIClient *, struct APIMessage *)
- A0 A1
- FUNCTION
- This function is called to pass commands to a client. The client
- is expected to set the result slots of <apiMsg>.
-
- INPUTS
- handle - handle obtained by APIMountClient()
- apiMsg - API message
-
- RESULTS
-
- SEE ALSO
-
- BUGS
-
- apilib.library/APIFreeClient apilib.library/APIFreeClient
-
- NAME
- APIFree - free order data (V3)
-
- SYNOPSIS
- APIFree(handle, struct APIOrder *);
-
- void APIFree(struct APIClient *, struct APIOrder *)
- A0 A1
- FUNCTION
- This function is called after an order has been processed by
- GoldED (the client may now free data attached to that order)
-
- INPUTS
- handle - handle obtained by APIMountClient()
- apiOrder - API order structure
-
- RESULTS
-
- SEE ALSO
-
- BUGS
-