waf/playground/stpl_c_py_cs_satellite_wix/src/api/funi_cs.cs.stpl

16 lines
293 B
Plaintext

// vi:syntax=cs
using System;
using System.Runtime.InteropServices;
namespace Funi
{
public class Func
{
%for i in range(maxfuni):
[DllImport("{{dllname}}", CallingConvention = CallingConvention.Cdecl)]
public static extern int func{{i}}(int a);
%end
}
}