elm-theme-viewer/main.c

17 lines
204 B
C

#include <Elementary.h>
#include "gui.h"
#include "theme.h"
EAPI_MAIN int
elm_main(int argc, char **argv)
{
gui_create();
theme_load();
elm_run();
elm_shutdown();
return 0;
}
ELM_MAIN()