hi to all,

i m creating a simple win32 chat application, when i run my application in
debug mode its run perfectly.
but in release mode this error will occur

error C2065: '_beginthread' : undeclared identifier
error C2065: '_endthread' : undeclared identifier

I dont know why

please help

Manoj

Re: error C2065: '_endthread' : undeclared identifier by William

William
Fri Feb 25 21:12:43 CST 2005

"Manoj Jangid" <mkjangid@gmail.com> wrote in message
news:Ohmr136GFHA.3088@tk2msftngp13.phx.gbl...
> i m creating a simple win32 chat application, when i run my application in
> debug mode its run perfectly.
> but in release mode this error will occur
>
> error C2065: '_beginthread' : undeclared identifier
> error C2065: '_endthread' : undeclared identifier
>
> I dont know why

You may be building with the multi-threaded runtime in debug as opposed to
the singly-threaded runtime in release.

Regards,
Will