gobj_is_volatil()#
Checks if the given hgobj is marked as volatile, meaning it is temporary and can be automatically destroyed.
Prototype
BOOL gobj_is_volatil(hgobj gobj);
Parameters
Key |
Type |
Description |
|---|---|---|
|
|
The |
Return Value
Returns TRUE if the hgobj is volatile, otherwise returns FALSE.
Notes
A volatile hgobj is typically used for temporary objects that do not persist beyond their immediate use.
Prototype
// Not applicable in JS
Prototype
# Not applicable in Python
Examples
// TODO C examples
// TODO JS examples
# TODO Python examples