Goto: 4C Home | 4C Docs | 4C External Libraries Home | FCCom Home | FCCom Function List Free()

Free()

Purpose:
FCCom::Free() frees the resources associated with one connection.
Usage:
ret = FCCom::Free(<connident>);
Arguments:

integer <connident> - A valid connection id returned by an earlier FCCom::Alloc() call.
Returns:
0 on success, -1 if <connident> is invalid.
Where Used:
FCCom::Free() can be called from anywhere as long as you have a valid <connident>
Example:
Example
Description:
FCCom::Free() frees the resources associated with one connection. Once freed, the <connident> cannot be used in calls to the FCCom library. If the connection is still open when FCCom::Free() is called, it will be closed first.
Bugs/Features/Comments:
See Also:
FCCom Function List


Back to Top