Before you go way down this road, please tell me why you think you need it?
It is possible that you are chasing something that has a somewhat different answer, so also report what version of Dev, what gcc version you are using.
Wayne
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
It is a file used by C++ Builder by Borland. You probably don't need it!
Here is the file that came with version 6:
----
//---------------------------------------------------------------------------
// condefs.h - defines needed by Borland C++ Builder console apps
//---------------------------------------------------------------------------
// $Revision: 1.4.1.0.1.0 $
//-------------------------------------------------------------------------
// Copyright (c) 1997, 2002 Borland Software Corporation
//----------------------------------------------------------------------------
#ifndef CONDEFS_H
#define CONDEFS_H
//---------------------------------------------------------------------------
#if defined(_NO_VCL)
anyone ever heard of this or know where i can download it?
thx
Before you go way down this road, please tell me why you think you need it?
It is possible that you are chasing something that has a somewhat different answer, so also report what version of Dev, what gcc version you are using.
Wayne
It is a file used by C++ Builder by Borland. You probably don't need it!
Here is the file that came with version 6:
----
//---------------------------------------------------------------------------
// condefs.h - defines needed by Borland C++ Builder console apps
//---------------------------------------------------------------------------
// $Revision: 1.4.1.0.1.0 $
//-------------------------------------------------------------------------
// Copyright (c) 1997, 2002 Borland Software Corporation
//----------------------------------------------------------------------------
#ifndef CONDEFS_H
#define CONDEFS_H
//---------------------------------------------------------------------------
#if defined(_NO_VCL)
#define USEUNIT(ModName) \
extern DummyThatIsNeverReferenced
//-----------------------------------------------------------------------
#define USEOBJ(FileName) \
extern DummyThatIsNeverReferenced
//-----------------------------------------------------------------------
#define USERC(FileName) \
extern DummyThatIsNeverReferenced
//-----------------------------------------------------------------------
#define USEASM(FileName) \
extern DummyThatIsNeverReferenced
//-----------------------------------------------------------------------
#define USEDEF(FileName) \
extern DummyThatIsNeverReferenced
//-----------------------------------------------------------------------
#define USERES(FileName) \
extern DummyThatIsNeverReferenced
//-----------------------------------------------------------------------
#define USETLB(FileName) \
extern DummyThatIsNeverReferenced
//-----------------------------------------------------------------------
#define USELIB(FileName) \
extern DummyThatIsNeverReferenced
//-----------------------------------------------------------------------
#define USEFILE(FileName) \
extern DummyThatIsNeverReferenced
//-----------------------------------------------------------------------
#define USEIDL(FileName) \
extern DummyThatIsNeverReferenced
//-----------------------------------------------------------------------
#define USE(FileName, ContainerID) \
extern DummyThatIsNeverReferenced
//-----------------------------------------------------------------------
#else // _NO_VCL
# include <vcl.h>
#endif // _NO_VCL
#endif // CONDEFS_H
/Roger