Fixed compilation on Linux

This was SVN commit r4719.
This commit is contained in:
Ykkrosh 2006-12-21 16:53:51 +00:00
parent 844256fa0c
commit 0462336cf2
2 changed files with 1 additions and 9 deletions

View File

@ -2,14 +2,6 @@
#include "lib/lib.h"
extern "C"
int
__stdcall
MessageBoxA(
void*,
const char*,const char*,
unsigned int);
class TestLib : public CxxTest::TestSuite
{
public:

View File

@ -14,7 +14,7 @@ void* const HANDLE_UNAVAILABLE = (void*)-1;
// note: on Linux, lib is prepended to the SO file name and we need to add ./
// to make dlopen look in the current working directory
#if OS_UNIX
static const char* prefix = "./lib"
static const char* prefix = "./lib";
#else
static const char* prefix = "";
#endif