#include <Evas.h>
#include <stdio.h>
#include <errno.h>
int
main(void)
{
char *engine_name;
if (!engine_list)
{
fprintf(stderr, "ERROR: Evas supports no engines! Exit.\n");
exit(-1);
}
printf("Available Evas Engines:\n");
printf("%s\n", engine_name);
return 0;
}
#define EINA_LIST_FOREACH(list, l, _data)
Definition for the macro to iterate over a list.
Definition: eina_list.h:1427
int evas_shutdown(void)
Directly shutdown Evas.
Definition: evas_main.c:212
void evas_render_method_list_free(Eina_List *list)
This function should be called to free a list of engine names.
Definition: evas_main.c:738
int evas_init(void)
Directly initialize Evas and its required dependencies.
Definition: evas_main.c:128
Eina_List * evas_render_method_list(void)
List all the rendering engines compiled into the copy of the Evas library.
Definition: evas_main.c:732