Re: [e-users] efl and c++

2023-11-10 Thread Carsten Haitzler
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

Re: [e-users] efl and c++

2023-11-10 Thread Pierre Couderc via enlightenment-users
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()

Re: [e-users] efl and c++

2023-11-10 Thread Pierre Couderc via enlightenment-users
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

Re: [e-users] efl and c++

2023-11-08 Thread Carsten Haitzler
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

Re: [e-users] efl and c++

2023-11-08 Thread Vincent Torri
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

Re: [e-users] efl and c++

2023-11-08 Thread Vincent Torri
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

[e-users] efl and c++

2023-11-08 Thread Pierre Couderc via enlightenment-users
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