February 14th, 2006 10:12 AM
I 've found the solution here:
http://blogs.msdn.com/stevejs/archive/2004/05/05/126497.aspx
and here:
February 8th, 2006 12:22 PM
Sorry guys... There was already a thread with this subject:
http://www.codeguru.com/forum/showthread.php?t=346998&highlight=error+LNK2001
February 8th, 2006 11:05 AM
Hi guys. I’ve changed my project, a project that has a C++ Managed wrapper who encapsulate C++ Native/unmanaged code, from VS 2003 to VS 2005 beta. Now, when I’ve compiled/linked it for the first...
February 8th, 2006 09:46 AM
Which version of Visual Studio are you using? If you have 2005 version this book is for you.
February 7th, 2006 11:16 AM
more information about it...
http://blogs.msdn.com/stevejs/archive/2004/05/05/126497.aspx
http://blogs.msdn.com/greggm/archive/2004/01/23/62455.aspx
about Call Stack that doesn't work with...
February 7th, 2006 10:01 AM
Here you will get some:
http://www.apress.com/book/bookDisplay.html?bID=95
http://www.amazon.com/gp/product/1590590333/104-4081171-6848731?v=glance&n=283155...
February 6th, 2006 02:45 PM
Hi. I have a mixed project (C++ Managed library) that uses managed and unmanaged code. I am having problems in debugging native (unmanaged) code. The breakpoints don’t work (when I put one in the...
February 3rd, 2006 07:08 AM
See the solution in http://www.codeguru.com/forum/showthread.php?t=374155.
Thanks.
February 3rd, 2006 07:02 AM
Thank you NoHere.
Actually what I changed, and now everything is working ok, is that.
Old code:
#pragma once
February 1st, 2006 01:52 PM
I have a project that uses legacy code C++ with lots of references to the file wtypes.h. Basically this use the function wsprintf and PALETTEENTRY. If I include this file I get the error C2872 in ...
January 31st, 2006 03:18 PM
I need to use "wtypes.h" because I have legacy code in my project that uses "LOGPALETTE" and "wsprintf".
How I can use that without have this error?
January 13th, 2006 01:13 PM
I have simplified my code above, than you guys can understand easier.
January 13th, 2006 11:33 AM
What is interesting is that I can use templates on a implementation of an method on the managed class (PdaManager).
This code has compiled all right. No Problem at all!
See:
void...
January 12th, 2006 02:57 PM
I would like to use a template class instance as a private member of a Managed Class. Is it possible?
I´ve tried this on my managed class:
// PDAManager.h
#include "lista.h"
January 12th, 2006 01:02 PM
Cool....
I have added __DllMainCRTStartup@12 on Linker/Input/Force Symbol References, and now I don´t have link warnings.
Thanks Nohero.
January 12th, 2006 12:13 PM
I have a C++.Net Library project that wrap C++ unmanaged classes. I will use this Library in a C#.Net application.
Now, after a hard work, and with helps of Nohero and Darwen, I could clean the...
January 4th, 2006 09:17 PM
Thanks Kirants.... That´s it. It was a good time....
January 4th, 2006 09:15 PM
Thak you Cherish. Nice to meet you! =D
January 3rd, 2006 04:10 PM
But for my project i get link errors if I do not use _hypot _strupr. Just for these 2. For anothers functions, I do not need to use underscore.
I ´ve put my project. See it in Basicas.cpp and...
January 3rd, 2006 03:48 PM
Thanks for your help Darwen. Ive´run your project. It´s worked.
I just do not understand why i needed to change strupr(x) to
_strupr(x), or hypot for _hypot???
Do you have a clue about this?
January 3rd, 2006 03:38 PM
NoHero, on that link there is this option
It says:
What does it means:
December 29th, 2005 07:57 PM
Thanks Guys.
I really apreciate your help. I am not on the office now. I will come back on MOnday and I will test your sugestion. Yes NOHero, I was looking this table of LIBs today but I did not...