473,395 Members | 1,766 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,395 software developers and data experts.

calling from c# into a dll

I have a dll that consists of unmanaged C++ routines. I can call a function
in the dll from a C++ executable, but not from a C# executable. I am calling
an independent function, not a class. C# gives me a runtime exception saying
the entry point to the dll cannot be found.

I declare the function in C# with the following lines:
[DllImport("simpleDLL.dll", CallingConvention=CallingConvention.Cdecl)]
public static extern int fnsimpleDLL(int i);

I then call the function with the line:
fnsimpleDLL(1);

Any ideas?
Nov 16 '05 #1
5 1372
Make sure the exported C function is not mangled (has C linkage), make also
sure the calling convention is cdecl (CallingConvention.Cdecl)]).

Willy.

"Al the programmer" <Al*************@discussions.microsoft.com> wrote in
message news:14**********************************@microsof t.com...
I have a dll that consists of unmanaged C++ routines. I can call a
function
in the dll from a C++ executable, but not from a C# executable. I am
calling
an independent function, not a class. C# gives me a runtime exception
saying
the entry point to the dll cannot be found.

I declare the function in C# with the following lines:
[DllImport("simpleDLL.dll", CallingConvention=CallingConvention.Cdecl)]
public static extern int fnsimpleDLL(int i);

I then call the function with the line:
fnsimpleDLL(1);

Any ideas?

Nov 16 '05 #2
Thanks for the info. I remember the mangling issue from when I had to call C
code from C++, but the C# docs are silent on the issue.

What do I do when I want to export a C++ class in a dll to a C# program?

Al
"Willy Denoyette [MVP]" wrote:
Make sure the exported C function is not mangled (has C linkage), make also
sure the calling convention is cdecl (CallingConvention.Cdecl)]).

Willy.

"Al the programmer" <Al*************@discussions.microsoft.com> wrote in
message news:14**********************************@microsof t.com...
I have a dll that consists of unmanaged C++ routines. I can call a
function
in the dll from a C++ executable, but not from a C# executable. I am
calling
an independent function, not a class. C# gives me a runtime exception
saying
the entry point to the dll cannot be found.

I declare the function in C# with the following lines:
[DllImport("simpleDLL.dll", CallingConvention=CallingConvention.Cdecl)]
public static extern int fnsimpleDLL(int i);

I then call the function with the line:
fnsimpleDLL(1);

Any ideas?


Nov 16 '05 #3

"Al the programmer" <Al*************@discussions.microsoft.com> wrote in
message news:01**********************************@microsof t.com...
Thanks for the info. I remember the mangling issue from when I had to
call C
code from C++, but the C# docs are silent on the issue.

What do I do when I want to export a C++ class in a dll to a C# program?

Al


Check this....
http://msdn2.microsoft.com/library/e59b22c5.aspx

Willy.
Nov 16 '05 #4
Thanks for the info. The docs don't talk about importing a class, only
functions, but I know where to start looking in the future. For my current
project I need to access C functions, which I can do.

Al

"Willy Denoyette [MVP]" wrote:

"Al the programmer" <Al*************@discussions.microsoft.com> wrote in
message news:01**********************************@microsof t.com...
Thanks for the info. I remember the mangling issue from when I had to
call C
code from C++, but the C# docs are silent on the issue.

What do I do when I want to export a C++ class in a dll to a C# program?

Al


Check this....
http://msdn2.microsoft.com/library/e59b22c5.aspx

Willy.

Nov 16 '05 #5

"Al the programmer" <Al*************@discussions.microsoft.com> wrote in
message news:66**********************************@microsof t.com...
Thanks for the info. The docs don't talk about importing a class, only
functions, but I know where to start looking in the future. For my
current
project I need to access C functions, which I can do.

Al


It doesn't talk about importing a class because it isn't possible to access
unmanaged classes cross-language.
If you need this, your only option is to create a wrapper class using
managed C++ (or better the upcoming C++/CLI)., this wrapper simply delegates
the accesses from managed code into unmanaged C++.

Willy.
Nov 16 '05 #6

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

Similar topics

1
by: Asapi | last post by:
1. Are linkage convention and calling convention referring to the same thing? 2. Does calling convention differ between languages C and C++? 3. How does calling convention differ between...
8
by: Muthu | last post by:
I've read calling conventions to be the order(reverse or forward) in which the parameters are being read & understood by compilers. For ex. the following function. int Add(int p1, int p2, int...
7
by: Klaus Friese | last post by:
Hi, i'm currently working on a plugin for Adobe InDesign and i have some problems with that. I'm not really a c++ guru, maybe somebody here has an idea how to solve this. The plugin is...
5
by: Nick Flandry | last post by:
I'm running into an Invalid Cast Exception on an ASP.NET application that runs fine in my development environment (Win2K server running IIS 5) and a test environment (also Win2K server running IIS...
3
by: Mike | last post by:
Timeout Calling Web Service I am calling a .NET 1.1 web service from an aspx page. The web service can take several minutes to complete its tasks before returning a message to the aspx page. ...
2
by: Geler | last post by:
A theoretical question: Sorry if its a beginner question. Here is a quote from the MSDN explaning the C/C++ calling convention.. It demonstrates that the calling function is responsible to clean...
47
by: teju | last post by:
hi, i am trying 2 merge 2 projects into one project.One project is using c language and the other one is using c++ code. both are working very fine independently.But now i need to merge both...
7
by: =?Utf-8?B?UVNJRGV2ZWxvcGVy?= | last post by:
I have a C# logging assembly with a static constructor and methods that is called from another C# Assembly that is used as a COM interface for a VB6 Application. Ideally I need to build a file...
10
by: sulekhasweety | last post by:
Hi, the following is the definition for calling convention ,which I have seen in a text book, can anyone give a more detailed explanation in terms of ANSI - C "the requirements that a...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
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?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
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...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

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.