L
Ladvánszky Károly
The following compiles but I get a link error.
typedef struct _point
{
float x, y;
} point;
// ...
point* pts = new point [100];
The following error occurs:
DC_3Daux error LNK2001: unresolved external symbol "void * __cdecl operator
new(unsigned int) ...
Is it a beginner's naive approach to use an old C++ construction under .NET?
Please help.
Károly
typedef struct _point
{
float x, y;
} point;
// ...
point* pts = new point [100];
The following error occurs:
DC_3Daux error LNK2001: unresolved external symbol "void * __cdecl operator
new(unsigned int) ...
Is it a beginner's naive approach to use an old C++ construction under .NET?
Please help.
Károly