... Is there any news on this topic? Does anyone have a improved GUI.lisp for creating win-apps? Hans-Peter...
1499
hpwickern
Jun 2, 2003 5:27 pm
I have the following sample-DLL code, which works fine when called from a delphi-enviroment. Now I want to try it from a .NET-enviroment where I import the DLL...
1500
Chris Double
doublecnz
Jun 2, 2003 10:37 pm
On Mon, 02 Jun 2003 17:16:03 -0000, "hpwickern" ... There are bits and pieces floating around I think. I have code for displaying ActiveX objects in a window...
1501
hpwickern
Jun 3, 2003 6:18 am
I had a strange thing on a WIN XP PRO Test-PC. When I compile to EXE and start the EXE nothing shows up. I had copied the new clbootapp.exe and...
1502
red s.
red_usenet
Jun 5, 2003 6:48 am
Hello, I am having enormous problems running PAIP examples from here: http://www.norvig.com/paip/README.html - WinXP Home - Corman Lisp 2.01 Just loading it is...
1503
red s.
red_usenet
Jun 5, 2003 8:41 am
BTW, let me note that I've been able to run this under another lisp implementation, but I'd rather get this working on Corman because I'm not happy about how...
1504
SmallHairyTroll
Jun 6, 2003 7:11 am
The parser seems to be inserting a #\"NEWLINE" into one of my defuns. ... #! (:export t :library "SDL" :ignore "DECLSPEC" :pack 4 ) #define CD_FPS 75 !# #!...
1505
Karsten
karstenpoeck
Jun 6, 2003 7:28 pm
This paip examples fail because of some un-ansi peaces in paip and some corman specialities. I now managed to get some of them running, but I am stuck with...
1506
SmallHairyTroll
Jun 7, 2003 10:13 pm
I am busy testing all the functions with callbacks in the SDL API and I am having trouble with a function in the Timer API. Basically the idea is that you...
1507
Chris Double
doublecnz
Jun 8, 2003 7:35 am
... What happens if you instead try: (setf var-1 (ct:malloc (ct:sizeof :LONG))) (setf (ct:cref (:long *) var-1 0) 0) (setf a-timer-1 (SDL_AddTimer 1000 ...
1508
SmallHairyTroll
Jun 8, 2003 7:45 am
The C to Lisp parser handles my FFI defintions just fine when I "Select All" and then [SHIFT-ENTER]. However (ct:transcribe-file "SDL_h.lisp" "SDL.lisp") fails...
1509
SmallHairyTroll
Jun 8, 2003 7:59 am
... allocated ... pointer to a ... it here. Hi Chris, No, still crashes CCL :( I know SDL callbacks do work as I managed to filter SDL events which requires a...
... What happens if you just pass a null pointer? This would tell you if it's the data or the actual callback. Chris....
1512
SmallHairyTroll
Jun 8, 2003 11:33 pm
... callback ... if it's the ... I passed (ct:create-foreign-ptr), which creates a null foreign pointer but it still crashed. So, does this mean that the...
1513
lavanya189
Jun 10, 2003 10:37 pm
I have a job opp for a strong Prolog and lisp programmer.If you refer any of your friends who might be intereted,please forward my email id. Location is...
1514
lavanya189
Jun 10, 2003 10:39 pm
Hi, I have opp in Prolog and Lisp in Newington,VA.Do you know someone who might be intersted.Please forward my email ID. ... puzzle using manhattan...
1515
SmallHairyTroll
Jun 11, 2003 1:16 am
I have been adding fprintf statements to the SDL.dll, printing out the values being passed to and from the Lisp callback function. Everything checks out: SDL...
1516
Chris Double
doublecnz
Jun 11, 2003 1:39 am
How does the timer callback work? Is it called back on a seperate thread? Does it add a timer message to the windows message queue? What does SDL do to...
1517
Chris Double
doublecnz
Jun 11, 2003 1:43 am
Looking at the docs for SDL_AddTimer it states: "The timer callback function may run in a different thread than your main program, and so shouldn't call any...
1518
SmallHairyTroll
Jun 11, 2003 2:09 am
... if you ... interval. Does ... Hi Chris, Good idea, unfortunately it still crashes. (I didn't bother calling SDL_PushEvent as it still crashes returning...
1519
Chris Double
doublecnz
Jun 11, 2003 2:19 am
On Wed, 11 Jun 2003 02:09:43 -0000, "smallhairytroll" ... Two more things to try. What happens if you call SDL_AddTimer with the following: (setf a-timer-1...
1520
Muhammad Fakhri
muhfakhri
Jun 11, 2003 3:31 am
i have try this program but can't run, might be anyone, can help me.. what the sites , that i can learn the lisp program including the source code, likes...
1521
SmallHairyTroll
Jun 11, 2003 5:15 am
... calling ... the ... Hi Chris, Thanks for all your feedback, it is very much appreciated. The above code either locks up CCL completely, or abrubtly ...
1522
Roger Corman
rgcorman
Jun 11, 2003 7:43 pm
Something to note: Lisp code may never be called on a thread that the lisp system does not know about. If it is being called on a previously unknown thread it...
1523
SmallHairyTroll
Jun 11, 2003 11:55 pm
... Hi Roger, This is probably it then as both the timer and the thread callback fail (The thread callback is definitely called from a foreign thread). When...
1524
Roger Corman
rgcorman
Jun 12, 2003 12:58 am
... Both. Lisp code can only be executed by threads which are known by the lisp system. The reason is that garbage collection can be triggered at any time, by...
1525
SmallHairyTroll
Jun 12, 2003 6:42 am
How would I go about calling a function defined within a struct ? typedef struct SDL_RWops { int (*seek)(struct SDL_RWops *context, int offset, int whence); } ...
1526
Chris Double
doublecnz
Jun 12, 2003 6:50 am
... I think this came up about 2 months ago in the mailing list. I can't check at the moment but you might want to try a quick look through the last three ...
1527
SmallHairyTroll
Jun 12, 2003 10:42 pm
... Not that I am a whiner or anything :) The closest matches I can come up with are both from John Pallister, one dealing with copying structs, the other...