a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
15 lines
270 B
C#
15 lines
270 B
C#
// Compiler options: -r:test-412-lib.dll
|
|
|
|
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace Foo {
|
|
public class Baz {
|
|
[DllImport("foo.so", CallingConvention=Bar.CConv)]
|
|
public static extern void doFoo();
|
|
|
|
public static void Main ()
|
|
{ }
|
|
}
|
|
}
|