-importing-module-using-swig-and-python-tp19930052p19930052.html
Sent from the Python - python-list mailing list archive at Nabble.com.
--
http://mail.python.org/mailman/listinfo/python-list
On 4 Oct 2005 05:46:27 -0700, Java and Swing <[EMAIL PROTECTED]> wrote:
> ...Ok, so I have a couple questions.
> 1) How would I call MakeDigits from python? In the C code I would
> normally have something like...
> MY_DIGIT tmp[10];
> MakeDigits(tmp);
How I usually do this is to
I am trying to wrap some C code I have. Currently I have something
like...
defs.h
---
typedef unsigned long MY_DIGIT;
myapp.c
-
void MakeDigits(MY_DIGIT digits[]) {
}
char* GetString(char *inMessage, MY_DIGIT *digit) {
char *results;
...
...
return r
Thanks Steve! appreciate the response.
--
http://mail.python.org/mailman/listinfo/python-list
On 5 May 2005 07:19:34 -0700, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
> Hi all,
>
> Has anyone experienced issues incompatible versions of the above?
> On solaris, we are experiencing suspect crashes & memory leaks?
>
> How do I determine which versions are proven to be
> compatible/incompat
Hi all,
Has anyone experienced issues incompatible versions of the above?
On solaris, we are experiencing suspect crashes & memory leaks?
How do I determine which versions are proven to be
compatible/incompatible etc?
Thanks for helping.
Alan
--
http://mail.python.org/mailman/listinfo/python