diff options
author | Kristján Valur Jónsson <kristjan@ccpgames.com> | 2007-05-26 19:31:39 (GMT) |
---|---|---|
committer | Kristján Valur Jónsson <kristjan@ccpgames.com> | 2007-05-26 19:31:39 (GMT) |
commit | 629ec26f637844f912d8f5aa6e21bae5d59f559f (patch) | |
tree | 8debb7c1a201e6018c948acd7fd177a992c24634 /PC/winsound.c | |
parent | ba526438f8ce4bde87f7b38f966688a5193a7c5e (diff) | |
download | cpython-629ec26f637844f912d8f5aa6e21bae5d59f559f.zip cpython-629ec26f637844f912d8f5aa6e21bae5d59f559f.tar.gz cpython-629ec26f637844f912d8f5aa6e21bae5d59f559f.tar.bz2 |
Include <windows.h> after python.h, so that WINNT is properly set before windows.h is included. Fixes warnings in PC builds.
Diffstat (limited to 'PC/winsound.c')
-rw-r--r-- | PC/winsound.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/PC/winsound.c b/PC/winsound.c index 4e94230..9ff3b7e 100644 --- a/PC/winsound.c +++ b/PC/winsound.c @@ -35,9 +35,9 @@ winsound.PlaySound(None, 0) */ +#include <Python.h> #include <windows.h> #include <mmsystem.h> -#include <Python.h> #ifdef HAVE_CONIO_H #include <conio.h> /* port functions on Win9x */ #endif |