Forums
New posts
Search forums
Members
Current visitors
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Menu
Log in
Register
Install the app
Install
Forums
Archive
Archive
C Programming
Problem with Borland C++ 5.02
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
[QUOTE="emer, post: 2454414"] Greetings to everybody. I am tired of correcting the following error, probably you can help me. I am writing a 16-bit application for Windows 3.1 using Borland C++ 5.02. I am developing an application for ISA DLL driver for some equipment and I have this DLL from the manufacturer with no source. I obtained the LIB static library from it using IMPLIB, but as soon as I try to use functions from it I get the message: 'Unresolved external ...'. I have tried all means: I put the LIB into the LIB path and directory of compiler, used make file and so on, but the compiler does not see the library derived from DLL. I cant make it work! I write the following code (simplified): #include <windows.h> #include "inc\8112.h" void main (void) { W_8112_Initial(1,0x220); return; } My header file (8112.h) is the following (truncated): #ifdef __cplusplus extern "C" { #endif .... int FAR PASCAL W_8112_Initial( int card_number , int base_address ); .... #ifdef __cplusplus } #endif #ifdef __cplusplus Do you have any ideas? How to force the compiler use the library? Or may be modify the library? I have NO ideas, because I have tried everything. [/QUOTE]
Verification
Post reply
Forums
Archive
Archive
C Programming
Problem with Borland C++ 5.02
Top