Re: Need Win Guru/Tester
- Posted by Pete Lomax <petelomax at blueyonder.co.uk> Jan 13, 2003
- 492 views
On Mon, 13 Jan 2003 12:10:41 -0600, "C. K. Lester" <cklester at yahoo.com> wrote: > >Windows gurus... Please go here and test the available code: > >http://www.cklester.com/euphoric/win32lib_sdl_test.htm > >The program simply attempts to open an SDL resizable window from within = a >IDE-generated win32lib program. When I click <Close> the program crashes >with some memory error. RobC, could you please check this as well?! > change: setHandler( bttn_Close, w32HClick, routine_id("PushButton2_onClick")) to: setHandler( bttn_Close, w32HClick, routine_id("bttn_Close_onClick")) at the end of sdl_done() I added: done=3D1 and also put an extra exit line in the main loop as follows: while done=3D0 do SDL_PumpEvents() if done then exit end if --<< here Pete