Tools and libraries to glue C/C++ APIs to high-level languages
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

34 lines
884 B

//
// Mono.VisualC.Interop.ABI.MsvcAbi.cs: An implementation of the Microsoft Visual C++ ABI
//
// Author:
// Alexander Corrado (alexander.corrado@gmail.com)
//
// Copyright (C) 2010 Alexander Corrado
//
using System;
using System.Text;
using System.Reflection;
using System.Runtime.InteropServices;
namespace Mono.VisualC.Interop.ABI {
public class MsvcAbi : CppAbi {
public MsvcAbi ()
{
}
public override CallingConvention DefaultCallingConvention {
get {
throw new System.NotImplementedException ();
}
}
public override string GetMangledMethodName (MethodInfo methodInfo)
{
throw new System.NotImplementedException ();
}
}
}