On Fri, 10 Nov 2023 09:22:51 +0100 Pierre Couderc via enlightenment-users
said:
>
> Le 11/8/23 à 21:02, Carsten Haitzler a écrit :
> > On Wed, 8 Nov 2023 09:53:22 +0100 Pierre Couderc via enlightenment-users
> > said:
> >
> >> Is there a topic to introduce efl under C++.
> >>
> >> I have a pr
All this because I wanted to try the EFL Unified C API...
But the good old loop works (or seems to wor= !) fine :
elm_main(int argc, char **argv)
{
_gui_setup();
thread wait(start);
elm_run();
wait.join();
return 0;
}
ELM_MAIN()
Le 11/8/23 à 21:02, Carsten Haitzler a écrit :
On Wed, 8 Nov 2023 09:53:22 +0100 Pierre Couderc via enlightenment-users
said:
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/he
On Wed, 8 Nov 2023 09:53:22 +0100 Pierre Couderc via enlightenment-users
said:
> 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), a
On Wed, Nov 8, 2023 at 10:06 AM Vincent Torri wrote:
>
> On Wed, Nov 8, 2023 at 9:55 AM Pierre Couderc via enlightenment-users
> wrote:
> >
> > Is there a topic to introduce efl under C++.
>
> i don't know one in c++
>
> it's not the answer you want, but there is one in C# :
> https://www.enlight
On Wed, Nov 8, 2023 at 9:55 AM Pierre Couderc via enlightenment-users
wrote:
>
> Is there a topic to introduce efl under C++.
i don't know one in c++
it's not the answer you want, but there is one in C# :
https://www.enlightenment.org/develop/tutorials/csharp/start.md
maybe it could help
vince
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