diff options
author | Davide Morelli <morellid@users.sourceforge.net> | 2006-01-16 12:44:45 +0000 |
---|---|---|
committer | Davide Morelli <morellid@users.sourceforge.net> | 2006-01-16 12:44:45 +0000 |
commit | 1903f3d6e4a81d0e97fde231cbea3bad7ed96ed1 (patch) | |
tree | bd08c528ba92f7e49ff6c7c400c553aaa272214a /external | |
parent | 831e206a4ee3f60e6e18300d092da52a307917d9 (diff) |
added arguments at initialization time
svn path=/trunk/externals/clr/; revision=4422
Diffstat (limited to 'external')
-rwxr-xr-x | external/External.cs | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/external/External.cs b/external/External.cs index ace63a3..00947db 100755 --- a/external/External.cs +++ b/external/External.cs @@ -9,15 +9,11 @@ namespace PureData public External()
{
- x = IntPtr.Zero;
}
// this function MUST exist
- public void SetUp(IntPtr pdClass)
+ public void SetUp()
{
- // you must assign pdclass to x !
- x = pdClass;
-
// now you can do what you like...
Console.WriteLine("pointer set!");
Console.WriteLine("setting selectors..");
|