gr_application_run
#include <gre/gre.h>
int gr_application_run(
gr_application_t * handle
);
The gr_application_run function creates the application handle for the
Storyboard Engine. The application handle can be used to further
configure the engine or to start it's execution.
The gr_application_run will start the execution of the Storyboard
Engine's main event loop. This call will only return when the engine has
terminated.
Parameters
| Parameter | Type | Description |
|---|---|---|
handle | gr_application_t* | A pointer to an application handle created using gr_application_create_args. |
Returns
| Type | Description |
|---|---|
int | A zero on success and a non-zero status code on failure. |