ifdefs for correct windows mobile compilation
This commit is contained in:
parent
dc6f3c8ec2
commit
a979aceffd
2 changed files with 2 additions and 2 deletions
|
|
@ -51,7 +51,7 @@
|
|||
|
||||
#include "pa_util.h"
|
||||
|
||||
#if (defined(WIN32) && (defined(_MSC_VER) && (_MSC_VER >= 1200))) /* MSC version 6 and above */
|
||||
#if (defined(WIN32) && (defined(_MSC_VER) && (_MSC_VER >= 1200))) && !defined(_WIN32_WCE) /* MSC version 6 and above */
|
||||
#pragma comment( lib, "winmm.lib" )
|
||||
#endif
|
||||
|
||||
|
|
|
|||
|
|
@ -130,7 +130,7 @@ static const float const_float_dither_scale_ = PA_FLOAT_DITHER_SCALE_;
|
|||
|
||||
/* -------------------------------------------------------------------------- */
|
||||
|
||||
#ifdef _WIN64
|
||||
#if defined(_WIN64) || defined(_WIN32_WCE)
|
||||
|
||||
/*
|
||||
-EMT64/AMD64 uses different asm
|
||||
|
|
|
|||
Loading…
Reference in a new issue