blob: 8295299577660b24b99405a22965316f04f96e98 [file] [log] [blame]
Namhyung Kim281ef542012-04-30 13:55:08 +09001#include "gtk.h"
2#include "../../util/cache.h"
3
Namhyung Kimdc41b9b2012-04-30 13:55:09 +09004int perf_gtk__init(void)
Namhyung Kim281ef542012-04-30 13:55:08 +09005{
Namhyung Kimdc41b9b2012-04-30 13:55:09 +09006 return gtk_init_check(NULL, NULL) ? 0 : -1;
Namhyung Kim281ef542012-04-30 13:55:08 +09007}
8
9void perf_gtk__exit(bool wait_for_ok __used)
10{
11 gtk_main_quit();
12}