ctypes is python module to call c functions, implemented in windows (DLL) and linux (SO) dynamic libraries (DLL) from python code.

learn more… | top users | synonyms

0
votes
1answer
20 views

Python & Ctypes populate an array of structures

I have the following code: lib.h struct Node { int index; char name[10]; }; void getAllNodes(Node array[]); libtest.py from ctypes import * class Node(Structure): _fields_ = ...
0
votes
3answers
44 views

Python using ctypes to pass a char * array and populate results

I'm trying to use ctypes to create a char * array in python to be passed to a library for populating with strings. I'm expecting 4 strings back no more than 7 characters in length each. My py code ...
0
votes
1answer
50 views

Error in parameter value on callback function Python + C DLL

I have a C dll that exports this function: DECLDIR int runTest (char *historyPath, unsigned int candleNumber, void (*testUpdate)(double percentageOfTestCompleted), void (*testFinished)(void), char ...
1
vote
2answers
75 views

Using python-ctypes to interface fortran with python

Experience: fortran for about 3 months python - intermediate : never used the ctypes module in python before this I was looking for a way to use the fortran code for my doctoral work in python - ...
0
votes
1answer
115 views

Python pass Pointer to Delphi function

I have dll, that builded in Delphi, and I try to call function from it. Declaration of function looks like this: function GetUid(UID:Pointer):Integer; stdcall; This is equivalent to this C function ...
1
vote
1answer
103 views

python script accessing winscard.dll

Hi all i am writing a python script to access the winscard.dll of windows. lib = cdll.LoadLibrary('winscard.dll') hSC = c_long(0) lRetval = lib.SCardEstablishContext(0,None,None,pointer(hSC)) the ...
0
votes
2answers
148 views

How to print c_ubyte_Array object in Python

What is the best way to print the contents of a C unsigned char array in Python, if I use print theStruct.TheProperty I get... <structs.c_ubyte_Array_8 object at 0x80fdb6c> The definition ...
0
votes
1answer
111 views

How to declare a variable of a type that is defined in a DLL or shared library?

I want to define a instance of some structure or variable type that is defined in a DLL to send it to a function using 'ctypes'. I know I can define similar variable/structure types in python/ctypes ...
1
vote
1answer
141 views

Python CTypes Callback from a Structure Field

I need to write a python call that has a callback that will be invoked by C function. The C header file has the following ... typedef struct _myResponse { char * data, void ...
4
votes
1answer
277 views

Good ways to pass 2D variable length arrays to/from Python and C?

With some hacking about I got data going back and forth between Python and C using python c-types. It seems a little messy, so I was hoping someone with more experience could tell me if I'm doing ...
1
vote
1answer
297 views

Issue returning values from C function called from Python

I'm have difficulty with a seeming simple problem. There are various C functions that I need to call from Python code. Currently, I'm trying to do this through ctypes. I'm having issues with a simple ...
0
votes
2answers
311 views

Casting a c_char_p to a c_char array

I need to access the contents of a char* by casting it to an array Here's a demo: from ctypes import * foo = (c_char * 4)() foo.value = "foo" print foo.raw # => 'foo\x00' foo_ptr = cast(foo, ...
0
votes
1answer
343 views

Python 3.2.2 ctypes.Structure initialize c_void_p to None

a simple class yields this weird behaviour on 32-bit Windows 7. I'm trying to passes an array of this structure to my dll and then trying to get content of packets filled by the dll. I discovered that ...
5
votes
3answers
287 views

Sorting list of string with specific locale in python

I work on an application that uses texts from different languages, so, for viewing or reporting purposes, some texts (strings) need to be sorted in a specific language. Currently I have a workaround ...
0
votes
1answer
197 views

using ctypes to link c++ and python in linux

I am writing a program in python. now i want to use ctypes to use some functions of a class i have in c++. so basically , i have an array of data in python. i have another program in c++ which is ...
0
votes
1answer
172 views

ctypes_opencv TypeError on simple cvLoadImage

I have an application that used to work. I recently had a full reinstall and tried to get the application working again, but I've run up against the problem in the title. I would appreciate any advice ...
0
votes
1answer
426 views

Hard typecasts in ctypes possible? int -> “pointer to struct” for example

I have am inside a callback that allows me to access the pointers passed to it as int (i.e. the Python type() function returns int). What so I have to do if I want convert this into a pointer of a ...
0
votes
2answers
177 views

Inside a pydbg exit_hook (callback) how can I convert a stack value to a matching Python type?

This is possibly more of a ctypes question than a pydbg question, but I still don't understand why the results are inconsistent in the way they are. I have an exit_hook set on LoadLibraryA using ...
4
votes
3answers
429 views

How can I get the name of a drive in python

I have a list of valid drive letters, and I want to present a choice to the end user. I'd like to show them the names of the drives. Here's some code that should show me the name of drive F:\: import ...