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.
 
 
 

15 lines
299 B

#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;
}