Last Commit (Threads and Stop): Another Linux build fix, hopefully it works now
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2404 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
d7a762f425
commit
af225bc9d2
|
@ -18,6 +18,9 @@
|
|||
#ifndef _THREAD_H
|
||||
#define _THREAD_H
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////////////////////
|
||||
// Includes
|
||||
// ------------
|
||||
#ifdef _WIN32
|
||||
#include <windows.h>
|
||||
#define THREAD_RETURN DWORD WINAPI
|
||||
|
@ -32,14 +35,26 @@
|
|||
#endif
|
||||
|
||||
#include "Common.h"
|
||||
///////////////////////////////////
|
||||
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////////////////////
|
||||
// Definitions
|
||||
// ------------
|
||||
// This may not be defined outside _WIN32
|
||||
#ifndef _WIN32
|
||||
#ifndef INFINITE
|
||||
#define INFINITE 0xffffffff
|
||||
#endif
|
||||
#endif
|
||||
|
||||
// -----------------------------------------
|
||||
#ifdef SETUP_TIMER_WAITING
|
||||
// -----------------
|
||||
typedef void (*EventCallBack)(void);
|
||||
#endif
|
||||
// ----------------------
|
||||
///////////////////////////////////
|
||||
|
||||
|
||||
namespace Common
|
||||
|
|
Loading…
Reference in New Issue