2 //gcc -o efl_thread_2 efl_thread_win32_2.c -g `pkg-config --cflags --libs elementary`
3 #include <Elementary.h>
4 #define WIN32_LEAN_AND_MEAN
7 static Evas_Object *win = NULL;
8 static Evas_Object *rect = NULL;
15 static void *my_thread_mainloop_code(void *data);
19 // BEGIN - code running in my custom win32 thread instance
22 my_thread_run(LPVOID arg)
28 struct info *inf = malloc(sizeof(struct info));
32 inf->x = 200 + (200 * sin(t));
33 inf->y = 200 + (200 * cos(t));
34 ecore_main_loop_thread_safe_call_sync
35 (my_thread_mainloop_code, inf);
44 // END - code running in my custom win32 thread instance
48 thread = CreateThread(NULL, 0, my_thread_run, NULL, 0, NULL);
51 char *str = evil_last_error_get();
54 fprintf("thread creation failed: %s\n", str);
61 my_thread_mainloop_code(void *data)
63 struct info *inf = data;
64 evas_object_move(rect, inf->x - 50, inf->y - 50);
70 elm_main(int argc, char **argv)
74 elm_policy_set(ELM_POLICY_QUIT, ELM_POLICY_QUIT_LAST_WINDOW_CLOSED);
76 win = elm_win_util_standard_add("efl-thread-2", "EFL Thread 2");
77 elm_win_autodel_set(win, EINA_TRUE);
79 o = evas_object_rectangle_add(evas_object_evas_get(win));
80 evas_object_color_set(o, 50, 80, 180, 255);
81 evas_object_resize(o, 100, 100);
85 // create custom thread to do some "work on the side"
88 evas_object_resize(win, 400, 400);
89 evas_object_show(win);