Re: [Jprogramming] Unexpected domain error

2020-11-28 Thread bill lam
Alternatively, run the tight event loop using jconsole. On Sun, Nov 29, 2020, 9:59 AM Raul Miller wrote: > Rather than an explicit polling loop, I would recommend using the > sys_timer mechanism -- > https://code.jsoftware.com/wiki/Guides/Window_Driver/Command_Reference > > -- > Raul > > On Sat,

Re: [Jprogramming] Unexpected domain error

2020-11-28 Thread Raul Miller
Rather than an explicit polling loop, I would recommend using the sys_timer mechanism -- https://code.jsoftware.com/wiki/Guides/Window_Driver/Command_Reference -- Raul On Sat, Nov 28, 2020 at 8:52 PM Thomas McGuire wrote: > > Have you come up with a way to handle SDL events? > > I was able to r

Re: [Jprogramming] Unexpected domain error

2020-11-28 Thread Thomas McGuire
Have you come up with a way to handle SDL events? I was able to read events but if I set up a polling loop I ran into problems with J not getting time for handling Its own user events. I made some attempts to use wd ‘msgs’ from the window driver but was unsuccessful. Tom McGuire > On Nov 27, 2

Re: [Jprogramming] Foreign call declaration for variadic C function.

2020-11-28 Thread bill lam
see https://code.jsoftware.com/wiki/Guides/DLLs/Error_Messages try '/usr/local/lib/libSDL2.dylib SDL_Log' > n *c' cd <'test' or maybe '/usr/local/lib/libSDL2.dylib SDL_Log' > n *c *c' cd '%s';'test' On Sun, Nov 29, 2020, 4:22 AM emacstheviking wrote: > I am trying to create a call to SDL_Log

[Jprogramming] Foreign call declaration for variadic C function.

2020-11-28 Thread emacstheviking
I am trying to create a call to SDL_Log which takes a format string and then any number of arguments as expected like printf sprintf et al. Given that the declaration doesn't allow one to declare such a thing, I thought I would have to do something like this... '/usr/local/lib/libSDL2.dylib SDL