y, September 21, 2006 11:44 AM
To: users@lists.ironpython.com
Subject: [IronPython] Calling external API from IronPython
Is there a way to declare external API functions (non-assembly based) called
from Python code?
e.g., in VB, you'd do something like declare the following stub:
Priv
Is there a way to declare external API functions (non-assembly based) called
from Python code?
e.g., in VB, you'd do something like declare the following stub:
Private Declare Function FriendlyName Lib "kernel32" Alias
"ActualAPIFunctionName"(ByVal SomeString As String) As Integer
e.g., in C#, y