From: ··········@gmail.com
Subject: winapi & lisp
Date: 
Message-ID: <f0f7cfb3-0402-45c1-9dc1-ecc12bb005c5@k30g2000hse.googlegroups.com>
How can I invoke WinAPI functions from Lisp directly (without McCLIM
and other wrappings)? I use CLisp and SBCL.

From: Pascal J. Bourguignon
Subject: Re: winapi & lisp
Date: 
Message-ID: <878wt29rms.fsf@hubble.informatimago.com>
··········@gmail.com writes:

> How can I invoke WinAPI functions from Lisp directly (without McCLIM
> and other wrappings)? I use CLisp and SBCL.

Using CFFI.

-- 
__Pascal Bourguignon__                     http://www.informatimago.com/

In a World without Walls and Fences, 
who needs Windows and Gates?
From: ··········@gmail.com
Subject: Re: winapi & lisp
Date: 
Message-ID: <665db163-1f56-42c7-a681-8f9e5bc0cf40@u28g2000hsc.googlegroups.com>
Sorry for delay. These solutions are not what I mean, but I'll use
CFFI.
Direct call:
CreateWindow("Wnd", "Window", WS_BORDER, CW_USEDEFAULT, CW_USEDEFAULT,
CW_USEDEFAULT, CW_USEDEFAULT, NULL, NULL, hInstance, NULL);