1
0
forked from 0ad/0ad

Make some things static.

This was SVN commit r15997.
This commit is contained in:
leper 2014-11-20 22:19:33 +00:00
parent 335ac3d0cb
commit 504e23acb8

View File

@ -37,7 +37,7 @@
#include "ps/CLogger.h"
FSEventStreamRef g_Stream = NULL;
static FSEventStreamRef g_Stream = NULL;
struct DirWatch
{
@ -50,7 +50,7 @@ static DirWatchMap g_Paths;
static DirWatchMap g_RootPaths;
static DirWatchNotifications g_QueuedDirs;
bool CanRunNotifications()
static bool CanRunNotifications()
{
int major = 0;
int minor = 0;
@ -117,7 +117,7 @@ static void fsevent_callback(
}
FSEventStreamRef CreateEventStream( DirWatchMap path )
static FSEventStreamRef CreateEventStream( DirWatchMap path )
{
if ( ( g_Stream == NULL ) && CanRunNotifications() && !path.empty() )
{
@ -147,7 +147,7 @@ FSEventStreamRef CreateEventStream( DirWatchMap path )
return NULL;
}
void DeleteEventStream()
static void DeleteEventStream()
{
if ( g_Stream != NULL )
{