Mercurial > sdl-ios-xcode
annotate test/.cvsignore @ 1303:52b5afd7ecee
Date: Tue, 05 Jul 2005 21:43:26 +1000
From: Sean Childs
Subject: [SDL] Compiling SDL 1.2.8 with the free Borland compiler
When compiling SDL 1.2.8 with the free Borland compiler, I received this
error (there is a similar error that occurs in
src\video\windx5\sdl_dx5events.c):
Error E2342 ..\..\src\video\windib\sdl_dibevents.c 189: Type mismatch in
parameter 'lpPrevWndFunc' (wanted 'int (__stdcall *)()', got 'long
(__stdcall *)(void *,unsigned int,unsigned int,long)') in function
DIB_HandleMessage
I checked the MSDN library at:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/winui/winui/
windowsuserinterface/windowing/windowprocedures/windowprocedurereference/wind
owprocedurefunctions/callwindowproc.asp
and it had this to say:
If STRICT is not defined, the lpPrevWndFunc parameter has the data type
FARPROC. The FARPROC type is declared as follows:
int (FAR WINAPI * FARPROC) ()
In C, the FARPROC declaration indicates a callback function that has an
unspecified parameter list. In C++, however, the empty parameter list in
the declaration indicates that a function has no parameters. This subtle
distinction can break careless code. Following is one way to handle this
situation:
#ifdef STRICT
WNDPROC MyWindowProcedure
#else
FARPROC MyWindowProcedure
#endif
...
lResult = CallWindowProc(MyWindowProcedure, ...)
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Tue, 31 Jan 2006 15:30:42 +0000 |
parents | c9ae23d221ea |
children | d94b080ff6ce |
rev | line source |
---|---|
416 | 1 Makefile.in |
2 Makefile | |
3 configure | |
4 config.cache | |
5 config.log | |
6 config.status | |
754
623b453a3219
Fixed "dist" make target for newer versions of automake
Sam Lantinga <slouken@libsdl.org>
parents:
676
diff
changeset
|
7 autom4te* |
416 | 8 aclocal.m4 |
1285
c9ae23d221ea
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
1249
diff
changeset
|
9 SDL.dll |
c9ae23d221ea
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
1249
diff
changeset
|
10 stdout.txt |
c9ae23d221ea
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
1249
diff
changeset
|
11 stderr.txt |
416 | 12 checkkeys |
13 graywin | |
14 loopwave | |
15 testalpha | |
16 testbitmap | |
1249
e6a82dcdce09
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
817
diff
changeset
|
17 testblitspeed |
416 | 18 testcdrom |
817
700c9c5c923b
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
754
diff
changeset
|
19 testcpuinfo |
1249
e6a82dcdce09
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
817
diff
changeset
|
20 testdyngl |
e6a82dcdce09
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
817
diff
changeset
|
21 testendian |
416 | 22 testerror |
23 testgamma | |
24 testgl | |
25 testhread | |
26 testjoystick | |
27 testkeys | |
28 testlock | |
29 testoverlay | |
676
8b58eeef4576
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
416
diff
changeset
|
30 testoverlay2 |
416 | 31 testpalette |
32 testsem | |
33 testsprite | |
34 testtimer | |
35 testtypes | |
36 testver | |
37 testvidinfo | |
38 testwin | |
39 testwm | |
40 threadwin |