From a1fdbfd28238d1a2bf914b98e9708605999cb12e Mon Sep 17 00:00:00 2001 From: William S Fulton Date: Thu, 8 Jan 2009 19:12:24 +0000 Subject: [PATCH] missing function declaration fix git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@11040 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- Examples/csharp/arrays/example.i | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Examples/csharp/arrays/example.i b/Examples/csharp/arrays/example.i index 22b9aa19d..488565a74 100644 --- a/Examples/csharp/arrays/example.i +++ b/Examples/csharp/arrays/example.i @@ -1,6 +1,9 @@ /* File : example.i */ %module example +%{ +#include "example.h" +%} %include "arrays_csharp.i" %apply int INPUT[] { int* sourceArray }