semicolons after these macros break linux

git-svn-id: svn://10.0.0.236/trunk@177872 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
dougt%meer.net
2005-08-16 19:28:09 +00:00
parent 2900d07672
commit f6c4f2c27c

View File

@@ -255,8 +255,8 @@ void DoPreferences()
{0xa5, 0x9b, 0x93, 0x63, 0xa0, 0xbf, 0x9a, 0x87} \
}
NS_GENERIC_FACTORY_CONSTRUCTOR(nsBrowserStatusFilter);
NS_GENERIC_FACTORY_CONSTRUCTOR(nsFullScreen);
NS_GENERIC_FACTORY_CONSTRUCTOR(nsBrowserStatusFilter)
NS_GENERIC_FACTORY_CONSTRUCTOR(nsFullScreen)
static const nsModuleComponentInfo defaultAppComps[] = {
{
@@ -323,8 +323,12 @@ BOOL CALLBACK FindApplicationWindowProc(HWND hwnd, LPARAM lParam)
return TRUE;
}
#define USE_MUTEX
PRBool DoesProcessAlreadyExist()
{
#ifdef USE_MUTEX
const HANDLE hMutex = CreateMutexW(0, 0, L"_MINIMO_EXE_MUTEX_");
if(hMutex)
@@ -349,6 +353,9 @@ PRBool DoesProcessAlreadyExist()
}
MessageBox(0, "Can not start Minimo", "Unexpected Error", 0);
return TRUE;
#else
return FALSE;
#endif
}
#else
PRBool DoesProcessAlreadyExist() {return PR_FALSE;}