From: "Innuendo" To: Subject: Other problem with TVision Date: Sun, 21 Mar 1999 15:33:41 +0100 X-MSMail-Priority: Normal X-Priority: 3 X-Mailer: Microsoft Internet Mail 4.70.1161 MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Message-Id: <19990321143649.LMCA27877.fep04-svc@nora0987> Reply-To: djgpp AT delorie DOT com i've downloaded the library but i can't compile anything. when i try to compile eg: >gcc tvexamp.cc -otvexamp.exe -ltv -lintl -lio the compiler says: >c:\djgpp\swap\cccaopvh(.text+0x208):tvexamp.cc: undefined reference to >'__ti12TApplication' >c:\djgpp\swap\cccaopvh(.text+0x225):tvexamp.cc: undefined reference to >'__tf12TApplication' what's wrong? This is the program: tvexamp.cc #define Uses_TApplication #include class TMyApp : public TApplication { public: TMyApp(); }; TMyApp::TMyApp() : TProgInit( &TMyApp::initStatusLine, &TMyApp::initMenuBar, &TMyApp::initDeskTop ) { } int main() { TMyApp myApp; myApp.run(); return 0; } Thanks in advance for your kind helping.