mirror of
https://github.com/Sarsoo/csbindgen.git
synced 2024-12-23 15:06:26 +00:00
22 lines
467 B
C#
22 lines
467 B
C#
|
// <auto-generated>
|
||
|
// This code is generated by csbindgen.
|
||
|
// DON'T CHANGE THIS DIRECTLY.
|
||
|
// </auto-generated>
|
||
|
using System;
|
||
|
using System.Runtime.InteropServices;
|
||
|
|
||
|
namespace CsBindgen
|
||
|
{
|
||
|
public static unsafe partial class LibRust
|
||
|
{
|
||
|
const string __DllName = "csbindgen_tests";
|
||
|
|
||
|
[DllImport(__DllName, EntryPoint = "my_add", CallingConvention = CallingConvention.Cdecl)]
|
||
|
public static extern int my_add(int x, int y);
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|
||
|
|