changeset 523:c210010f50f4

Fixed windows event handling for ActiveX controls (thanks Huib-Jan!)
author Sam Lantinga <slouken@libsdl.org>
date Tue, 08 Oct 2002 16:25:23 +0000
parents 6b3998ddee6d
children 1b8ea19e9ee4
files src/video/windib/SDL_dibevents.c src/video/windx5/SDL_dx5events.c
diffstat 2 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/src/video/windib/SDL_dibevents.c	Tue Oct 08 15:48:21 2002 +0000
+++ b/src/video/windib/SDL_dibevents.c	Tue Oct 08 16:25:23 2002 +0000
@@ -172,8 +172,8 @@
 {
 	MSG msg;
 
-	while ( PeekMessage(&msg, NULL, 0, (WM_APP-1), PM_NOREMOVE) ) {
-		if ( GetMessage(&msg, NULL, 0, (WM_APP-1)) > 0 ) {
+	while ( PeekMessage(&msg, NULL, 0, 0, PM_NOREMOVE) ) {
+		if ( GetMessage(&msg, NULL, 0, 0) > 0 ) {
 			DispatchMessage(&msg);
 		}
 	}
--- a/src/video/windx5/SDL_dx5events.c	Tue Oct 08 15:48:21 2002 +0000
+++ b/src/video/windx5/SDL_dx5events.c	Tue Oct 08 16:25:23 2002 +0000
@@ -538,8 +538,8 @@
 	/* Check the normal windows queue (highest preference) */
 	posted = 0;
 	while ( ! posted &&
-	        PeekMessage(&msg, NULL, 0, (WM_APP-1), PM_NOREMOVE) ) {
-		if ( GetMessage(&msg, NULL, 0, (WM_APP-1)) > 0 ) {
+	        PeekMessage(&msg, NULL, 0, 0, PM_NOREMOVE) ) {
+		if ( GetMessage(&msg, NULL, 0, 0) > 0 ) {
 			DispatchMessage(&msg);
 		} else {
 			return(-1);