Hi,
I have this code in C which contains library routines. This is primary written for "cobol calling C" demo.
How do I load these files to Visual C++ so I can generate a library (static).
cbl2cdll.c - contains functions only - no main() - example:
INT APIENTRY ReturnInteger(int integerValue)
cbl2cdll.def - contains LIBRARY cbl2cdll, CODE, DATA & EXPORTS keywords
cbl2cdll.h - contains all function header
Thanks.
I have this code in C which contains library routines. This is primary written for "cobol calling C" demo.
How do I load these files to Visual C++ so I can generate a library (static).
cbl2cdll.c - contains functions only - no main() - example:
INT APIENTRY ReturnInteger(int integerValue)
cbl2cdll.def - contains LIBRARY cbl2cdll, CODE, DATA & EXPORTS keywords
cbl2cdll.h - contains all function header
Thanks.