Click here to Skip to main content
15,895,011 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.7K   479   24  
An article on using the __cdecl callback from C#, changing compiler service.
//#include "Globals.h"
#include<string.h>
#ifdef __cplusplus
extern "C" {
#endif

typedef (__cdecl *fptr)(int a,int b);

int Sum(int a, int b)     
{
    return a+b;
}



int testfuncptr(int a, int b,fptr ptr)
{
	//fptr = &Sum;
	return ptr(a,b);
}


#ifdef __cplusplus
}
#endif

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