Win32 API bindings
Hello,
does anyone have good tested Win32 API FFI
bindings? (I am mostly interested in GUI stuff - the likes of SetWindowLong,
brushes functions, device context functions etc.).
Additionally, can anyone explain why doing
M-x Evaluate Buffer on win32.h with contents
//BOF
//(prototypes edited for test purposes -
macros like DWORD and LONG expanded)
long FindWindowEx(long hwndParent,
long hwndChildAfter,
char* lpszClass,
char* lpszWindow
);
bool SetWindowLong( long hWnd,
int nIndex,
LONG dwNewLong
);
bool SetWindowPos( long hWnd,
long hWndInsertAfter,
int X,
int Y,
int cx,
int cy,
unsigned int uFlags
);
//EOF
produces the following
error:
Name must be a string or a recognised
symbol: :ABSOLUTE.
?
This is on LWW 4.4.5 under Windows
XP.
Thank you,
Denis.