gr_application_free
#include <gre/gre.h>
void gr_application_free(
gr_application_t * handle
);
The gr_application_free Destroy and free an application handle. This
will stop the execution of the application and free any resources that
are associated with it.
gr_application_free will destroy a created application handle and
stop execution of the application. Any resources assiciated with the
handle will be freed.
Parameters
| Parameter | Type | Description |
|---|---|---|
handle | gr_application_t* | A pointer to an application handle created using gr_application_create_args. Returns: A zero on success and a non-zero status code on failure. |