Browse Source

More MinGW fixes.

Darryl Pogue 13 years ago
parent
commit
a1b500da49
  1. 1
      Sources/Plasma/Apps/plClientPatcher/CMakeLists.txt
  2. 2
      Sources/Plasma/NucleusLib/pnAsyncCoreExe/Private/W9x/pnAceW9xThread.cpp
  3. 2
      Sources/Plasma/PubUtilLib/plAudio/plEAXEffects.cpp
  4. 3
      Sources/Plasma/PubUtilLib/plNetTransport/plNetTransport.cpp

1
Sources/Plasma/Apps/plClientPatcher/CMakeLists.txt

@ -18,6 +18,7 @@ set(plClientPatcher_SOURCES
)
add_library(plClientPatcher STATIC ${plClientPatcher_HEADERS} ${plClientPatcher_SOURCES})
target_link_libraries(plClientPatcher CoreLib plAudioCore)
source_group("Header Files" FILES ${plClientPatcher_HEADERS})
source_group("Source Files" FILES ${plClientPatcher_SOURCES})

2
Sources/Plasma/NucleusLib/pnAsyncCoreExe/Private/W9x/pnAceW9xThread.cpp

@ -219,7 +219,7 @@ AsyncId CThreadDispObject::Queue (void * op) {
***/
//===========================================================================
static unsigned CALLBACK W9xThreadProc (AsyncThread *) {
static unsigned THREADCALL W9xThreadProc (AsyncThread *) {
// Perform the main thread loop
for (;;) {

2
Sources/Plasma/PubUtilLib/plAudio/plEAXEffects.cpp

@ -61,7 +61,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include <al.h>
#if HS_BUILD_FOR_WIN32
# ifdef DX_OLD_SDK
# if defined(DX_OLD_SDK) || defined(__MINGW32__)
# include <dxerr9.h>
# else
# include <dxerr.h>

3
Sources/Plasma/PubUtilLib/plNetTransport/plNetTransport.cpp

@ -47,10 +47,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "plNetMessage/plNetMessage.h"
#include "plNetClient/plNetClientMgr.h"
#include <algorithm>
#if HS_BUILD_FOR_UNIX
#include <float.h>
#endif
plNetTransport::~plNetTransport()
{

Loading…
Cancel
Save