mirror of
https://github.com/tribes2/engine.git
synced 2026-01-20 03:34:48 +00:00
20 lines
489 B
C
20 lines
489 B
C
//-----------------------------------------------------------------------------
|
|
// V12 Engine
|
|
//
|
|
// Copyright (c) 2001 GarageGames.Com
|
|
// Portions Copyright (c) 2001 by Sierra Online, Inc.
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#ifndef _PLATFORMMUTEX_H_
|
|
#define _PLATFORMMUTEX_H_
|
|
|
|
struct Mutex
|
|
{
|
|
static void* createMutex( void );
|
|
static void destroyMutex( void* );
|
|
static void lockMutex( void* );
|
|
static void unlockMutex( void* );
|
|
};
|
|
|
|
#endif
|