#9264 closed patch
WIN32_LEAN_AND_MEAN in incorrect place
Reported by: | SF/sven3000 | Owned by: | bluegr |
---|---|---|---|
Priority: | normal | Component: | Port: Win32 |
Version: | Keywords: | ||
Cc: | Game: |
Description
In svn revision 54565, in the backends/platform/sdl/win32/win32.cpp file, the #define WIN32_LEAN_AND_MEAN line is under the #include <windows.h> line, meaning it has no effect. It should be above the #include, as per the attached patch.
It's already in the correct place in win32-main.cpp.
Note that the only effect of this #define is improved compilation times.
Ticket imported from: #3121969. Ticket imported from: patches/1369.
Attachments (1)
Change History (5)
by , 14 years ago
Attachment: | win32_lean_and_mean.patch added |
---|
comment:1 by , 14 years ago
Summary: | WIN32_MEAN_AND_LEAN in incorrect place → WIN32_LEAN_AND_MEAN in incorrect place |
---|
comment:2 by , 14 years ago
Owner: | set to |
---|---|
Status: | new → closed |
comment:4 by , 6 years ago
Component: | → Port: Win32 |
---|
Note:
See TracTickets
for help on using tickets.
Patch with correct WIN32_LEAN_AND_MEAN position.