473,385 Members | 1,531 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

Problem linking managed DLL to native DLL

I have the following situation:

There are two dlls in question: a c++ dll (native) and a c++/cli dll
(managed) with /clr option enabled.

Managed dll links with native dll.

Native dll exports a class ClientSession with a method GetJob.

Managed dll references this method and compiles just fine.

Managed dll does NOT link however and gives this error:

error LNK2028: unresolved token (0A000168) "public: class
Rimage::Simple::Api::Job * __thiscall
Rimage::Simple::Api::ClientSession::GetJobW(wchar_ t const *)"
(?GetJobW@ClientSession@Api@Simple@Rimage@@$$FQAEP AVJob@234@PB_W@Z)
referenced in function "public: class Rimage::Simple::Dotnet::Api::Job ^
__clrcall Rimage::Simple::Dotnet::Api::ClientSession::GetJob W(class
System::String ^)"
(?GetJobW@ClientSession@Api@Dotnet@Simple@Rimage@@ $$FQ$AAMP$AAVJob@2345@P$AAVString@System@@@Z)

Notice that the linker is complaining about GetJobW, NOT GetJob.

When I right click on GetJob and select "Go to Definition" it takes me to
winspool.h where the following block exists:

#ifdef UNICODE
#define GetJob GetJobW
#else
#define GetJob GetJobA
#endif // !UNICODE

Just for kicks I deleted this block and all of a sudden the linker worked!

BTW, when I link a native application (exe) with the same native dll and
call GetJob on my class it compiles and links just fine. So it seems to have
something to do with the fact that I am linking a managed dll with a native
dll.

Any help would be greatly appreciated

Thanks, Dave


Jun 29 '06 #1
2 2128
"Dave Burns" <db********@aol.com> wrote in message
news:OB*************@TK2MSFTNGP04.phx.gbl...
I have the following situation:
When I right click on GetJob and select "Go to Definition" it takes me to
winspool.h where the following block exists:

#ifdef UNICODE
#define GetJob GetJobW
#else
#define GetJob GetJobA
#endif // !UNICODE

Just for kicks I deleted this block and all of a sudden the linker worked!


That's a drastic solution. :-)

Immediately after including the Windows header files try adding an

#undef GetJob

line.

In case you don't know, to support both ASCII and UNICODE projects,
virtually all of the functions of the Windows API on NT/2K/XP/2K+3/Vista
that use strings come in two versions. In one version the name of the
function ends in A and takes or returns ANSI characters. The other ends in W
and is for UNICODE.

Macro trickery is used to hide the fact that there are two ostensibly
identical functions with the same name. That trickery, and the fact that one
of your member functions has the same name is biting you.

Regards,
Will
Jun 29 '06 #2
> Native dll exports a class ClientSession with a method GetJob.

Managed dll references this method and compiles just fine.

Managed dll does NOT link however and gives this error:

error LNK2028: unresolved token (0A000168) "public: class
Rimage::Simple::Api::Job * __thiscall
Rimage::Simple::Api::ClientSession::GetJobW(wchar_ t const *)"
(?GetJobW@ClientSession@Api@Simple@Rimage@@$$FQAEP AVJob@234@PB_W@Z)
referenced in function "public: class Rimage::Simple::Dotnet::Api::Job ^
__clrcall Rimage::Simple::Dotnet::Api::ClientSession::GetJob W(class
System::String ^)"
(?GetJobW@ClientSession@Api@Dotnet@Simple@Rimage@@ $$FQ$AAMP$AAVJob@2345@P$AAVString@System@@@Z)

Notice that the linker is complaining about GetJobW, NOT GetJob.

When I right click on GetJob and select "Go to Definition" it takes me to
winspool.h where the following block exists:

#ifdef UNICODE
#define GetJob GetJobW
#else
#define GetJob GetJobA
#endif // !UNICODE

Just for kicks I deleted this block and all of a sudden the linker worked!

BTW, when I link a native application (exe) with the same native dll and
call GetJob on my class it compiles and links just fine. So it seems to have
something to do with the fact that I am linking a managed dll with a native
dll.


I have had the same problem before with other function names.
basically, the problem is that GetJob is a macro like most win32 functions.

during preprocessing, the preprocessor will bluntly replace all instances of
'GetJob' with another
function name, depending on whether your build is for unicode or ascii.

if you wouldn't include windows.h somewhere, you would not have this problem.
this has nothing to do with managed or unmanaged.

there are 3 workarounds that I know of.
- use a different method name instead of GetJob
- bluntly #undef GetJob in the header file of your unmanaged class.
this could have the side effect for anyone using your header that they have
to explicitly use GetJobW or GetJobA because the GetJob macro is not
working anymore.
- everywhere you call GetJob, use pragma push_macro, undef and pragma
pop_macro to locally
change the meaning of GetJob. this is tedious, and all users of the GetJob
function have to do it.

maybe there is a smarter workaround, but I just used a different name and
moved on.

--

Kind regards,
Bruno.
br**********************@hotmail.com
Remove only "_nos_pam"
Jun 29 '06 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Jacob Cohen | last post by:
Under VC7.1, I am trying to wrap a native-C++ DLL that contains C++ objects in a Managed-C++ class library for use in a C# project. I created and compiled the native DLL under VC7.1 as a Win32...
0
by: Drew | last post by:
I am attempting to clean up some code by breaking a large mixed-mode Managed C++ library into two. I cannot get the darn thing to compile or link (depending on what I do). I have two...
0
by: Wildspirit | last post by:
I have simple problem, i have written program in pure C++ and builded a library. Now i wanna connect program which is wrotten in Managed C++(GUI) with native code. And my cl compiler is crashing...
9
by: Herby | last post by:
Is possible to have a managed method within a Native(un-managed) class within a \clr project? E.g. class myClass { public: #pragma managed void myMethod(void);
4
by: quortex | last post by:
Hey all, I have been working on a project which consists of Native C++ code and managed C# code. In order for the managed C# code to be able to access the native layer I wrap some objects using...
3
by: Mali Guven | last post by:
Hello, I have a native DLL (written in C) which is supposed to call a managed DLL (was written in C#, and an entry point was injected modifying the ildasm'd code). The exectuable calls the...
6
by: John | last post by:
I have 5 native static libraries that are being compiled in Visual Studio 2005 with the /MDd C Runtime option. I have 2 CLR DLLs (all managed code) in Visual Studio 2005 and the /MDd C Runtime...
1
by: Scott McFadden | last post by:
I have a managed C++ DLL (VC8) that I would like to statically link with MFC (it consumes both native and managed resources). What project settings must i specify to produce a managed C++ DLL...
11
by: =?Utf-8?B?aWduaGVucnk=?= | last post by:
I have a managed C++ project and two C# projects. All are class library projects. The C++ project links with native C++ static libraries and references to one C# project. The projects structure...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.