Lucon SDK 1.0.7
Loading...
Searching...
No Matches
Functions related to memory management

Typedefs

typedef struct LuconObject * LuconHandle
 LuconHandle A handle to an object within the Lucon SDK.

Functions

LuconResult LUCON_FreeHandle (LuconHandle handle)
 Frees the memory and all resources attached to the handle.

Detailed Description

Typedef Documentation

◆ LuconHandle

typedef struct LuconObject* LuconHandle

LuconHandle A handle to an object within the Lucon SDK.

All handles obtained by the user must be released with LUCON_FreeHandle to release the resources. NULL is an invalid handle, returned by factory methods to indicate an error.

Function Documentation

◆ LUCON_FreeHandle()

LuconResult LUCON_FreeHandle ( LuconHandle handle)
extern

Frees the memory and all resources attached to the handle.

After the call, the handle may no longer be used.

Returns