We are currently migrating Bugzilla to GitHub issues.
Any changes made to the bug tracker now will be lost, so please do not post new bugs or make changes to them.
When we're done, all bug URLs will redirect to their equivalent location on the new bug tracker.

Bug 490 - Missing include in SDL_win32events.c
Summary: Missing include in SDL_win32events.c
Status: RESOLVED FIXED
Alias: None
Product: SDL
Classification: Unclassified
Component: video (show other bugs)
Version: HG 2.0
Hardware: x86 Windows (XP)
: P2 trivial
Assignee: Ryan C. Gordon
QA Contact: Sam Lantinga
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-09-05 20:22 UTC by Miika Ahonen
Modified: 2008-11-25 17:04 UTC (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Miika Ahonen 2007-09-05 20:22:52 UTC
There was a whole bunch of undeclared variable errors coming from src/video/win32/SDL_win32events.c of which all were prefixed with SDLK.

After a quick look-see, the problem seems to be just missing inclusion of SDL_compat.h.

The problem probably occurs with some other files in src/video/ too, just search them for SDLK_ and check for the include :)
Comment 1 Sam Lantinga 2008-11-25 11:13:36 UTC
It looks like this is fixed, can you check the latest SVN snapshot?

Thanks!
Comment 2 Miika Ahonen 2008-11-25 17:04:26 UTC
Seems to work.