Change inline -> __inline for MSVC

This commit is contained in:
Chris Robinson 2010-05-16 06:02:27 -07:00
parent 6dab9d54d1
commit 7f533c6a25
2 changed files with 9 additions and 9 deletions

View File

@ -29,11 +29,11 @@
#if PA_API_VERSION == 11
#define PA_STREAM_ADJUST_LATENCY 0x2000U
static inline int PA_STREAM_IS_GOOD(pa_stream_state_t x)
static __inline int PA_STREAM_IS_GOOD(pa_stream_state_t x)
{
return (x == PA_STREAM_CREATING || x == PA_STREAM_READY);
}
static inline int PA_CONTEXT_IS_GOOD(pa_context_state_t x)
static __inline int PA_CONTEXT_IS_GOOD(pa_context_state_t x)
{
return (x == PA_CONTEXT_CONNECTING || x == PA_CONTEXT_AUTHORIZING ||
x == PA_CONTEXT_SETTING_NAME || x == PA_CONTEXT_READY);

View File

@ -139,19 +139,19 @@ typedef pthread_key_t tls_type;
#define tls_set(x, a) pthread_setspecific((x), (a))
typedef pthread_mutex_t CRITICAL_SECTION;
static inline void EnterCriticalSection(CRITICAL_SECTION *cs)
static __inline void EnterCriticalSection(CRITICAL_SECTION *cs)
{
int ret;
ret = pthread_mutex_lock(cs);
assert(ret == 0);
}
static inline void LeaveCriticalSection(CRITICAL_SECTION *cs)
static __inline void LeaveCriticalSection(CRITICAL_SECTION *cs)
{
int ret;
ret = pthread_mutex_unlock(cs);
assert(ret == 0);
}
static inline void InitializeCriticalSection(CRITICAL_SECTION *cs)
static __inline void InitializeCriticalSection(CRITICAL_SECTION *cs)
{
pthread_mutexattr_t attrib;
int ret;
@ -171,7 +171,7 @@ static inline void InitializeCriticalSection(CRITICAL_SECTION *cs)
pthread_mutexattr_destroy(&attrib);
}
static inline void DeleteCriticalSection(CRITICAL_SECTION *cs)
static __inline void DeleteCriticalSection(CRITICAL_SECTION *cs)
{
int ret;
ret = pthread_mutex_destroy(cs);
@ -182,7 +182,7 @@ static inline void DeleteCriticalSection(CRITICAL_SECTION *cs)
* to the expected DWORD. Both are defined as unsigned 32-bit types, however.
* Additionally, Win32 is supposed to measure the time since Windows started,
* as opposed to the actual time. */
static inline ALuint timeGetTime(void)
static __inline ALuint timeGetTime(void)
{
int ret;
#if _POSIX_TIMERS > 0
@ -202,7 +202,7 @@ static inline ALuint timeGetTime(void)
#endif
}
static inline void Sleep(ALuint t)
static __inline void Sleep(ALuint t)
{
struct timespec tv, rem;
tv.tv_nsec = (t*1000000)%1000000000;
@ -311,7 +311,7 @@ void ResetUIntMap(UIntMap *map);
ALenum InsertUIntMapEntry(UIntMap *map, ALuint key, ALvoid *value);
void RemoveUIntMapKey(UIntMap *map, ALuint key);
static inline ALvoid *LookupUIntMapKey(UIntMap *map, ALuint key)
static __inline ALvoid *LookupUIntMapKey(UIntMap *map, ALuint key)
{
if(map->size > 0)
{