Mercurial > sdl-ios-xcode
annotate docs/man3/SDL_GetEventFilter.3 @ 717:42ed44b2c8b6
Date: Sun, 14 Sep 2003 17:04:55 -0400
From: Philip D.S. Thoren <pthoren@cs.uml.edu>
Reply-To: "sdl@libsdl.org" <sdl@libsdl.org>
To: "sdl@libsdl.org" <sdl@libsdl.org>
Subject: [SDL] BUG in src/video/windx5/SDL_dx5events.c
I tracked down a bug that crashed my program on Windows *all* the
time.
FILE: src/video/windx5/SDL_dx5events.c
FUNCTION: handle_mouse
BUG:
SDL_PublicSurface is being dereferenced when it is NULL.
I added the following to the very begining of handle_mouse
and it solved my crashing problems:
if (SDL_PublicSurface == NULL) return;
~ Philip D.S. Thoren
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Mon, 15 Sep 2003 13:51:25 +0000 |
parents | e5bc29de3f0a |
children | 546f7c1eb755 |
rev | line source |
---|---|
181
e5bc29de3f0a
Updated from the SDL Documentation Project
Sam Lantinga <slouken@libsdl.org>
parents:
55
diff
changeset
|
1 .TH "SDL_GetEventFilter" "3" "Tue 11 Sep 2001, 22:59" "SDL" "SDL API Reference" |
0 | 2 .SH "NAME" |
3 SDL_GetEventFilter\- Retrieves a pointer to he event filter | |
4 .SH "SYNOPSIS" | |
5 .PP | |
6 \fB#include "SDL\&.h" | |
7 .sp | |
8 \fBSDL_EventFilter \fBSDL_GetEventFilter\fP\fR(\fBvoid\fR); | |
9 .SH "DESCRIPTION" | |
10 .PP | |
11 This function retrieces a pointer to the event filter that was previously set using \fI\fBSDL_SetEventFilter\fP\fR\&. An SDL_EventFilter function is defined as: | |
12 .PP | |
13 .nf | |
14 \f(CWtypedef int (*SDL_EventFilter)(const SDL_Event *event);\fR | |
15 .fi | |
16 .PP | |
17 .SH "RETURN VALUE" | |
18 .PP | |
19 Returns a pointer to the event filter or \fBNULL\fP if no filter has been set\&. | |
20 .SH "SEE ALSO" | |
21 .PP | |
22 \fI\fBSDL_Event\fR\fR, \fI\fBSDL_SetEventFilter\fP\fR | |
181
e5bc29de3f0a
Updated from the SDL Documentation Project
Sam Lantinga <slouken@libsdl.org>
parents:
55
diff
changeset
|
23 ...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 22:59 |