[e-users] efl and c++
Pierre Couderc via enlightenment-users <[email protected]>
| Newsgroups | gmane.comp.window-managers.enlightenment.user |
|---|---|
| Message-ID | <[email protected]> |
Is there a topic to introduce efl under C++.
I have a problem with "hello world" in Unified C API
If I compile
https://www.enlightenment.org/develop/tutorials/c/hello-world-gui.md
with C++ (linux), all is fine.
Il I had a thread, it fails with nothing displayed :
void start()
{
while(1)
{
sleep(1);
}
return;
}
//****************************************************** main
*******************************************************
EAPI_MAIN void
efl_main(void *data EINA_UNUSED, const Efl_Event *ev EINA_UNUSED)
{
_gui_setup();
thread wait(start);
wait.join();
}
EFL_MAIN()
Thanks.
PC
_______________________________________________
enlightenment-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/enlightenment-users