Hello,
I've been developing a UI for use in Microsoft eMbedded Visual C++ for
later port to a mobile device, and I have run into a number of linking
issues. Initially I developed a test program based around the files
given on the following page:
http://zone.ni.com/devzone/cda/epd/p/id/1354?submitted=yes
As I am using eMbedded VC++ I was unable to run the test program
there, but it helped me develop my code to transfer from CVI. I have
a very simple .uir file with only a button to close the window, and
even including the cvirt.lib and cvisupp.lib libraries and altering
the header paths to the correct folder I can't get everything
working.
The error is an Unresolved External Symbol Error (LNK 2019) for very
basic functions like DisplayPanel() and RunUserInterface(), which are,
I believe, defined in the refsym.c file in the /extlib directory.
When I include that file in the project as a resource, I get
identifier errors in refsym.c for obscure symbols I don't even use
(these return to unresolved symbol errors when these sections are
commented out).
My question is this: How can I correctly include the refsym.c file as
a part of the build so that I might finally avoid all of these
irritating symbol errors? Any help would be much appreciated,
Eccomi