mirror of
https://github.com/tribes2/engine.git
synced 2026-03-12 08:50:55 +00:00
t2 engine svn checkout
This commit is contained in:
commit
ff569bd2ae
988 changed files with 394180 additions and 0 deletions
19
platform/platformMutex.h
Normal file
19
platform/platformMutex.h
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
// 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue