You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
299 B
16 lines
299 B
9 years ago
|
#include <Ecore_Evas.h>
|
||
|
|
||
|
int
|
||
|
main(void)
|
||
|
{
|
||
|
Ecore_Evas *ee;
|
||
|
|
||
|
ecore_evas_init();
|
||
|
ee = ecore_evas_new(NULL, 0, 0, 200, 200, NULL);
|
||
|
ecore_evas_name_class_set(ee, "activate_test", "activate_test");
|
||
|
ecore_evas_show(ee);
|
||
|
ecore_evas_activate(ee);
|
||
|
ecore_main_loop_begin();
|
||
|
return 0;
|
||
|
}
|