elm-theme-viewer/main.c

17 lines
204 B
C
Raw Normal View History

2012-08-12 19:50:58 -07:00
#include <Elementary.h>
2012-08-12 19:52:52 -07:00
#include "gui.h"
2012-08-12 19:55:07 -07:00
#include "theme.h"
2012-08-12 19:50:58 -07:00
EAPI_MAIN int
elm_main(int argc, char **argv)
{
2012-08-12 19:52:52 -07:00
gui_create();
2012-08-12 19:55:07 -07:00
theme_load();
2012-08-12 19:52:52 -07:00
2012-08-12 19:50:58 -07:00
elm_run();
elm_shutdown();
return 0;
}
ELM_MAIN()