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

16 lines
293 B
Plaintext
Raw Normal View History

2016-01-03 05:06:44 +01:00
// 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
}
}