[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Using LUA libs in multithreaded VC apps
- From: "Matthias Gall" <matthias@...>
- Date: Fri, 22 Jun 2001 20:54:57 +0200
> When compiling using the multithreaded run time library, I get
> lualib.lib(liolib.obj) : error LNK2001: unresolved external symbol _errno
>
> Is there any quick way to get around this?
Just noticed that the easiest way to get the stuff running is to insert
extern "C"
{
int errno;
}
into a cpp file. Is there any better, cleaner way?
Matt