summaryrefslogtreecommitdiff
path: root/src/runtime/dotNet/Native.cs
diff options
context:
space:
mode:
authorKrasimir Angelov <kr.angelov@gmail.com>2017-09-08 22:58:42 +0200
committerKrasimir Angelov <kr.angelov@gmail.com>2017-09-08 22:58:42 +0200
commit527d97fdd237ac4c471e6612e246a6752cb8638d (patch)
tree84c29fe96e90483aa064db1796a1588af874d692 /src/runtime/dotNet/Native.cs
parent71e6562eaa0efe417ff80c723aa8d582ba716d53 (diff)
fix the type signatures for the linearizer callbacks
Diffstat (limited to 'src/runtime/dotNet/Native.cs')
-rw-r--r--src/runtime/dotNet/Native.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/runtime/dotNet/Native.cs b/src/runtime/dotNet/Native.cs
index 5c750e010..bc90aca17 100644
--- a/src/runtime/dotNet/Native.cs
+++ b/src/runtime/dotNet/Native.cs
@@ -207,10 +207,10 @@ namespace PGFSharp
public delegate void LinFuncSymbolToken(IntPtr self, IntPtr token);
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
- public delegate void LinFuncBeginPhrase(IntPtr self, IntPtr cat, int fid, int lindex, IntPtr fun);
+ public delegate void LinFuncBeginPhrase(IntPtr self, IntPtr cat, int fid, UIntPtr lindex, IntPtr fun);
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
- public delegate void LinFuncEndPhrase(IntPtr self, IntPtr cat, int fid, int lindex, IntPtr fun);
+ public delegate void LinFuncEndPhrase(IntPtr self, IntPtr cat, int fid, UIntPtr lindex, IntPtr fun);
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
public delegate void LinFuncSymbolNonexistant(IntPtr self);