Click here to Skip to main content
15,886,362 members
Articles / Programming Languages / MSIL

Using the _CDECL calling convention in C# (changing compiler service)

Rate me:
Please Sign up or sign in to vote.
4.30/5 (16 votes)
22 Dec 20052 min read 86.5K   479   24  
An article on using the __cdecl callback from C#, changing compiler service.
using System;
using System.Runtime.InteropServices;
using System.Collections;


namespace CallDLLFromDotNet
{
	/// <summary>
	/// Summary description for Class1.
	/// </summary>
	
	
	class CallDll
	{

		[DllImport("Sum.dll",CallingConvention=CallingConvention.Cdecl)]
			public static extern int testfuncptr(int a,int b,MulticastDelegate callbk);
		[DllImport("Sum.dll",CallingConvention=CallingConvention.Cdecl)]
			private static extern int Sum(int a, int b);

	[Callconv]public delegate int mydg(int a,int b);


		[STAThread]
		static void Main(string[] args)
		{

			mydg dg = new mydg(mytest);
			int a = 10;
			int b = 10;

			a = testfuncptr(a,b,dg);
			

			Console.WriteLine(a.ToString());
			Console.ReadLine();
		
		}



		public static int mytest(int a,int b)
		{
			return (a+b);
		}

		

	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
India India
Mainak Saha is an Aerospace Engg from Indian Institute Of Technology Kharagpur(2003 batch) .... Now working with Cognizant Technology Solutions ... Think himself as one of the many C# gurus .. Smile | :)

Comments and Discussions