| You don't need it but it's nice. With FFI you have write stuff by
hand. SWIG does it for you (mostly). Also its quite hard, impractical
really, to use FFI with C++ libraries, but SWIG is just for that.
Regards,
Mike
On Wed, May 9, 2012 at 9:18 PM, Adam Puckett wrote:
> I guess the Python module "ctypes" is more along the lines of an FFI
> then. So if languages have FFIs and .NET has p/invoke, then why do we
> need SWIG?
>
> On 5/9/12, Michael Gogins wrote:
>> Almost, but not quite.
>>
>> FFI stands for "Foreign Function Interface" and enables the caller's
>> program to impersonate C types, build a C calling convention stack
>> frame, and call a C calling convention function in a shared library.
>>
>> pinvoke enables .NET programs to call C calling convention functions
>> that have types that can be impersonated in .NET.
>>
>> pinvoke is a sort of subset of FFI.
>>
>> What Anthony is talking about is probably pinvoke. As I said before it
>> should work fine with most Csound "C" API function calls.
>>
>> Regards,
>> Mike
>>
>> On Wed, May 9, 2012 at 8:55 PM, Adam Puckett
>> wrote:
>>> Is that what an "FFI" is?
>>>
>>> On 5/9/12, Anthony Palomba wrote:
>>>> You can easily dynamically import a dll API and call them in C#.
>>>>
>>>> I think that is how Winxsound is doing it.
>>>>
>>>>
>>>>
>>>> -ap
>>>>
>>>>
>>>>
>>>> On Wed, May 9, 2012 at 6:46 PM, Michael Gogins
>>>> wrote:
>>>>
>>>>> SWIG is not necessary. You can call the Csound "C" API using pinvoke.
>>>>>
>>>>> Regards,
>>>>> Mike
>>>>>
>>>>> On Wed, May 9, 2012 at 6:24 PM, Rory Walsh wrote:
>>>>> > A former student of mine who's now doing computing degree is kind of
>>>>> > stuck doing C# all the time, but wants to use Csound as he did with
>>>>> > C/C++ when he did his final year with us. I guess that SWIG can be
>>>>> > used to create a C# interface, but is it hard to do? And does anyone
>>>>> > know if it is actually necessary?
>>>>> >
>>>>> > Rory.
>>>>> >
>>>>> >
>>>>> > Send bugs reports to the Sourceforge bug tracker
>>>>> > https://sourceforge.net/tracker/?group_id=81968&atid=564599
>>>>> > Discussions of bugs and features can be posted here
>>>>> > To unsubscribe, send email sympa@lists.bath.ac.uk with body
>>>>> "unsubscribe csound"
>>>>> >
>>>>>
>>>>>
>>>>>
>>>>> --
>>>>> Michael Gogins
>>>>> Irreducible Productions
>>>>> http://www.michael-gogins.com
>>>>> Michael dot Gogins at gmail dot com
>>>>>
>>>>>
>>>>> Send bugs reports to the Sourceforge bug tracker
>>>>> https://sourceforge.net/tracker/?group_id=81968&atid=564599
>>>>> Discussions of bugs and features can be posted here
>>>>> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe
>>>>> csound"
>>>>>
>>>>>
>>>>
>>>> Send bugs reports to the Sourceforge bug tracker
>>>> https://sourceforge.net/tracker/?group_id=81968&atid=564599
>>>> Discussions of bugs and features can be posted here
>>>> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe
>>>> csound"
>>>>
>>>>
>>>
>>>
>>> Send bugs reports to the Sourceforge bug tracker
>>> https://sourceforge.net/tracker/?group_id=81968&atid=564599
>>> Discussions of bugs and features can be posted here
>>> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe
>>> csound"
>>>
>>
>>
>>
>> --
>> Michael Gogins
>> Irreducible Productions
>> http://www.michael-gogins.com
>> Michael dot Gogins at gmail dot com
>>
>>
>> Send bugs reports to the Sourceforge bug tracker
>> https://sourceforge.net/tracker/?group_id=81968&atid=564599
>> Discussions of bugs and features can be posted here
>> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe
>> csound"
>>
>>
>
>
> Send bugs reports to the Sourceforge bug tracker
> https://sourceforge.net/tracker/?group_id=81968&atid=564599
> Discussions of bugs and features can be posted here
> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
>
--
Michael Gogins
Irreducible Productions
http://www.michael-gogins.com
Michael dot Gogins at gmail dot com
|