473,396 Members | 1,774 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

missing file Turbo C++ ver 3

Can any body send to me a missing file to my compiler Turbo C++ ver 3,called tv.lib
Jul 22 '05 #1
5 2178
hp******@yahoo.com wrote:
Can any body send to me a missing file to my compiler Turbo C++ ver 3,called tv.lib


Sure, I've pasted the contents below:

Jul 22 '05 #2
Jeff Schwab wrote:
hp******@yahoo.com wrote:
Can any body send to me a missing file to my compiler Turbo C++ ver
3,called tv.lib

Sure, I've pasted the contents below:


Har har har. :-)

Jul 22 '05 #3
Jacques Labuschagne <ja*****@clawshrimp.com> wrote in message news:<Yo********************@news02.tsnz.net>...
Jeff Schwab wrote:
hp******@yahoo.com wrote:
Can any body send to me a missing file to my compiler Turbo C++ ver
3,called tv.lib

Sure, I've pasted the contents below:


Har har har. :-)

Could any body be more seriuos ?
Jul 22 '05 #4
hp******@yahoo.com wrote:
Can any body send to me a missing file to my compiler Turbo C++ ver 3,called tv.lib


Have you tried http://www.borland.com?
Or perhaps a Borland newsgroup?

-- Thomas

Jul 22 '05 #5

Uzytkownik <hp******@yahoo.com> napisal w wiadomosci
news:67**************************@posting.google.c om...
Jacques Labuschagne <ja*****@clawshrimp.com> wrote in message news:<Yo********************@news02.tsnz.net>...
Jeff Schwab wrote:
hp******@yahoo.com wrote:

> Can any body send to me a missing file to my compiler Turbo C++ ver
> 3,called tv.lib
Sure, I've pasted the contents below:


Har har har. :-)

Could any body be more seriuos ?


Arnd Schroeter wrote:
I am a c++ programmer under the os linux. I am using pthreads and i am
wondering why i can only use satic methods of a class to create a
thread of it. How can i change this, because it limits my programmes
very strongly. thanks in advance..Arnd Schröter

Vamat certificates upper mail:
The non-static member functions have different signature, that's why.
And you can't change that. You have to work your way around it. One
possible workaround is like this:
struct thread
{
static void thread_func(void* p);
virtual void run() = 0;
};

void thread::thread_func(void* p) {
// iirc pthread_create needs a function that takes a void
// pointer.
thread* t = reinterpret_cast<thread*>(p);
t->run();
}

struct some_thread : thread {
void run() {
// do your stuff..
}
};

thread* thr = new some_thread();

Now pass thread::thread_func to the thread creation function as start
routine and thr as argument to start routine.
--
Ahti Legonkov
Jul 22 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
by: Developwebsites | last post by:
I am taking advanced C++ at college and we use Borland Turbo C++ 4.5 compiler. How different is Turbo C++ from the standard C++? I know Borland used to call their versions of C++ and Pascal Turbo,...
2
by: Kamlesh | last post by:
Hello, I am writing a computer graphics program in Turbo C compiler on DOS environment. The source code includes "vga.h", but I do not have this file in my TurboC directory. Please let me...
6
by: Dr Ann Huxtable | last post by:
Hi All, I am trying to compile an old C code written for the Borland Compiler on the DOS platform. This is a tactical solution and I intend to rip out the GUI side of things and slap on...
7
by: SunRise | last post by:
Hi I am creating a C Program , to extract only-Printable-characters from a file ( any type of file) and display them. OS: Windows-XP Ple help me to fix the Errors & Warnings and explain...
4
by: bibin | last post by:
Can somebody send me the math.h header file used in Turbo C
16
by: scott | last post by:
I am looking for a copy of Turbo C 1.5 from 1987 for some historical research I'm doing into computing from that time period.
2
by: 2005 | last post by:
Hi I have a code that compiles using Turbo C++ for DOS version 1.01 from http://community.borland.com/article/0,1410,21751,00.html What is that I need to do so that it cmpiles on Visual...
3
by: postrishi | last post by:
Hello Everybody , I am a new user. I am currently using Turbo C++ 3.0 editor in my engg.Can you tell me or post me a ebook on turbo c++ and NOT on c or C++.MInd it I want a book on TURBO C++ editor...
2
by: henryiamiam8 | last post by:
Miracle c and Turbo c both compile the source code without error but do not generat an exe file.
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.