Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how to use <biso.h>

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
I'm start to study c-program nowday.
but when compiling, it is some problem.
This error massage is "Unresolved external '_bioskey' referenced from D:\...."
Another error massage is "NO Call by bios.h..."

help me!
My program version is borland C++5.02 and I had compiled the program by c-compile.
 
IIRC, _bioskey() is a function supported only on the 16-bit compilers. The 32-bit Borland compiler no longer supports these kind of functions (direct hardware manipulation through bios and/or interrupts) in the library.

You have to lookup what _bioskey() does and replace it with another supported function that has a similar functionality.

Shyan
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top