Goto:
4C Home
|
4C Docs
|
4C External Libraries Home
|
FCJSon Home
|
FCJSon Function List
Release()
Release()
Purpose:
-
FCJSon::Release() decrements the reference count on a FCJSon object and
if the reference count is 0, frees all resources used by that object.
Usage:
-
-
rc = FCJSon::Release(<jsonident>);
Arguments:
-
integer <jsonident> -
A valid json object identifier.
Returns:
-
0 - OK
-
-1 - Error
Where Used:
-
FCJSon::Release() can be called anytime you have a valid json ident.
Example:
-
Example
Description:
-
FCJSon::Release() decrements the reference count on a FCJSon object and
if the reference count is 0, frees all resources used by that object.
I'm not sure if any application will ever really need this function.
Most applications will use FCJSon:Free() or FCJSon::FreeAll() instead.
Bugs/Features/Comments:
-
See Also:
-
FCJSon Function List
Back to Top