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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Win 32 App

Status
Not open for further replies.

magnairn

Programmer
Sep 10, 2001
2
US
I have created a WIN32 console App which complies a runs OK. I am now trying to create a WIN32 App which will do exactly what the console App is doing. I have created a new Win32 App and Copied the relevent code from the console APP to the Win32 App including all the header files. I have also copied all the DLLs which i am using into the WIN32 App Directory.

When i now compile the Application i am getting an Undefined function, __am__ScSCalibrate when the function is ScSCalibrate and is Defined in one of the header files which i have copied over.

Does anyone know how i can use the same code and header files that i have previously created in the WIN32 console APP.
 
Is this a compiler or a linker error?
If it is a linker one you haven't added the .cpp and .h files to the new project.

In order to do that open the Workspace(Alt+0) and in the FileView right click on "YourProjectName Files", select "Add files to project" and add all your .h and .cpp files.

Hope this helps, s-)

Blessed is he who in the name of justice and goodwill, sheperds the weak through the valley of darkness...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top