The project is a Class Library - I am trying to create a dll that I can use in another application.
So really there is no main entry point, and that is why I am puzzled that something tries to link to one.
Main Topics
Browse All TopicsHi, I have created a C++ project - a Class Library.
The class is very basic and has just one method:
public __gc class IMLibrary
{
void TestMethod();
};
I'm including the header files:
#include <stdio.h>
#include <math.h>
#include "stdafx.h"
#include "IMLibrary.h"
and the method uses sin, cos, and sqrt. All of these give linker errors. I am obviously missing something.
I also get the linker error:
error LNK2019: unresolved external symbol _main referenced in function _mainCRTStartup
Ultimately I'm trying to write a dll that will access some .lib files that I have, and then call this from a .NET file, but for some reason I can't even get past a simple function call!
Thanks.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
The following article explains what happens in your case (using CRT functions in managed C++ class library) and describes how to fix this:
http://support.microsoft.c
However, the better way is to replace unmanaged math.h with managed Math class. There is no need for using CRT in managed C++ project. Remove also stdio.h, all functions that you use from it are available in .NET.
Business Accounts
Answer for Membership
by: jaime_olivaresPosted on 2005-06-09 at 09:54:41ID: 14181582
Where is your main function? Has you created as a console application?
I suggest you to create a new Project in Visual C++, and specify console application (prefereable a Hello World application), and put your code on it.