I'm trying my first little console app using VC++ 7.1. I'm moving some
legacy code from a Borland environment. I have the very latest
Codebase 6. And am generally following this:
http://www.codebase.com/support/kb/?article=C01097
My code compiles and links fine if I have these statementa:
Code4 CodeBase;
Data4 DataFile;
Index4 Index;
Tag4 SearchTag;
But the minute I add this line, I get the linker error in the subject
of this post.
FIELD4 SerialNo;
Now I do have some LIBCI.LIB files on my development machine, but they
are in the AMD and Linux sub-directories of my MSC SDK directories.
I'm concerned about trying to use these libs in a WIN32 application.
I have also found that I need to remark out the
#include <iostream.h>
statement in d4all.hpp or I get an error about no iostream.h existing.
I have some old versions of this header file from my Borland
environment, but I'm guessing I don't need them in the VC++ world.
Can anyone help me resolve my linkage problem?
TIA
Harry