`ctypes` is a Python package that wraps C .dll/.so libraries in pure Python.

learn more… | top users | synonyms

0
votes
1answer
25 views

How do I properly pass a hex value into a C dll in Python ctypes?

I am calling a C DLL from python using ctypes. For most of the functions all is working fine. But...now I have a function that requires a hex constant for input and I cannot seem to pass it correctly. ...
0
votes
1answer
21 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
49 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
51 views

Python - Ctypes: How to pass Void* as argument

I have to use 2 functions from a DLL in CTypes. Those functions have a void* as argument. But whatever I try, I can't make it work. I get an error telling me that I use the wrong type. I have looked ...
2
votes
1answer
23 views

Detecting Calling Python Script from Windows DLL When Using CTypes

I am seeking to add functionality within a windows dll to detect the name of a calling Python script. I am calling the dll via Python using ctypes as described in the answers to How can I call a DLL ...
0
votes
1answer
32 views

Hide Windows start orb in python (3.2)

I am creating a program that will replace the windows start menu in Python. I have managed to find a way to hide the taskbar as shown below but i can't find a way to hide the start orb(Windows ...
0
votes
3answers
92 views

Calling C functions in Python

I have a bunch of functions that I've written in C and I'd like some code I've written in Python to be able to access those functions. I've read several questions on here that deal with a similar ...
1
vote
3answers
102 views

Python is passing 32bit pointer address to C functions

I would like to call my C functions within a shared library from Python scripts. Problem arrises when passing pointers, the 64bit addresses seem to be truncated to 32bit addresses within the called ...
2
votes
1answer
32 views

How can I convert a C++ enum to ctypes.Structure using Python 2.7.2?

I have searched and searched, but I haven't found an example that does what I need to do. I found How can I represent an 'enum' in Python? here on SO, but it doesn't cover ctypes.Structure. ...
0
votes
1answer
37 views

Python conversion from c_double to float

I am new to Python. I would like to know what would be the best way to convert a c_double (from ctypes) to a float. My code is working, but I would like to know if there is a pythonic way to do it. ...
1
vote
2answers
107 views

How to export a C array to Python

I have a file.cc that contains an array of doubles values, as seen here: double values[][4] = { { 0.1234, +0.5678, 0.1222, 0.9683 }, { 0.1631, +0.4678, 0.2122, 0.6643 }, { 0.1332, +0.5678, ...
0
votes
0answers
53 views

Python, when to use ctypes.byref to pass as reference

I've loaded a function from a third party DLL. I've been successful accessing the function which is the entry point for the library via ctypes.windll.LoadLibrary. The function has 30 parameters ...
2
votes
1answer
44 views

Function returns pointer to array with result. How to access this data

I have a function imported from dll and defined in ctypes. I set restype as c_void_p. So now when I call the function, as a result it returns pointer to 32byte array of bytes. How can I convert this ...
-1
votes
2answers
40 views

Create a function that contains a foreach loop if statement [closed]

I’m trying to answer a PHP university question which needs to contain a function, foreach loop, if statement and validation using ctype. I have three IDs: $id = 'AA-2365' $id = 'A1-2365' $id = ...
1
vote
1answer
55 views

Wrapping C++ using ctypes: undefined symbol

I am experimenting with wrapping C++ in order to use C++ functions in Python. Currently I am trying out ctypes and unfortunately, I have not yet been successful. For starters I have written a Hello ...
1
vote
1answer
37 views

Error returning structure from dll function in python

I have a dll written in C exporting this function: typedef struct testResult_t { int testId; int TT; double fB; double mD; double mDL; int nS; int nL; } TestResult; ...
1
vote
1answer
45 views

Segmentation fault in python while using ctypes

I am trying to read some registers in hardware (FPGA) using Python. I already have a C code to read the registers and it works fine. I want to use them in python using ctypes. rdaxi.c #include ...
0
votes
1answer
73 views

Getting Battery Capacity Windows with Python

I am looking to figure out both the current Battery Capacity and the Design Capacity. So far what I could get to work is using the Win32_Battery() class which doesn't give all the information I need ...
-1
votes
0answers
68 views

Python Ctypes and windows DLL memory understanding

I'm doing an extension functionality from C++ to Python using Ctypes module problem happens when I want to remove pointers before leaving the DLL (simply program crashes) #Python MyDll = ...
0
votes
2answers
66 views

Why “__getattr__” does not work in python “ctypes”?

I stop it in the example of "datetime", is rewritten in a real example of lxml. (It may be strange because English is translated in Google Translate is my statement I'm sorry.) It is thought that I ...
0
votes
1answer
67 views

Python, using ctypes to create C++ class wrapper

I'm well aware that there is no standard ABI for c++, so this is what I did: //trialDLL.h #ifndef TRIALDLL_H_ #define TRIALDLL_H_ class MyMathFuncs { private: double offset; public: ...
0
votes
2answers
75 views

ctype: WindowsError: exception: access violation reading

My environment: Windows Vista 64, Python3.1, Visual Studio 2008 sp1 Error Description: I am trying to wrap a dll (eg. Lib.dll) using ctype, when proceeding to one of the function (eg. func()) in ...
2
votes
1answer
75 views

python ctypes messagebox appears under all programs

I'm new in python and I needed a messagebox. I used ctypes but it opens the message box under all other programs. how can I make it to be above all programs?? import ctypes def run(x=0): STOP = ...
2
votes
3answers
99 views

Improve speed of passing data from Python to C(++) via ctypes

I need to optimize a function call that is in a loop, for a time-critical robotics application. My script is in python, which interfaces via ctypes with a C++ library I wrote, which then calls a ...
2
votes
2answers
94 views

Python 3 replacement for PyFile_AsFile

The following code works in Python 2: from ctypes import * ## Setup python file -> c 'FILE *' conversion : class FILE(Structure): pass FILE_P = POINTER(FILE) PyFile_AsFile = ...
2
votes
0answers
79 views

Ctypes, C extension, and outside library: Cast Long to Void Pointer

I built a thin wrapper around a C library using ctypes that I'm trying to improve now. The library has an add_datum(*graph,int) function that I've wrapped (including the Structure for graph), and it ...
2
votes
2answers
43 views

How do mixed definitions work in enum?

I am trying to use a C program (via dynamic libraries) with Python and the ctypes module. Several constants defined in a header file will be important for me, but I am unsure of how enum is being used ...
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 ...
0
votes
1answer
37 views

Error in values passed byref calling a dll in python

I have to different dlls exporting this functions (one function each dll): dll1: DECLDIR void getFrameworkVersion(int* pMajor, int* pMinor, int* pBugfix); dll2: void __stdcall ...
2
votes
2answers
126 views

ctypes c++ function returns array of unknown size

I have a c++ function that accepts a Pointer to an array of known size as input and returns an array of size that cannot be determined until the function completes its processing of data. How do I ...
1
vote
1answer
52 views

Trouble creating char * object to send to c++/c shared object library

First off I am new to ctypes and did search for an answer to my question. Definitely will appreciate any insight from here. I have a byte string supplied to me by another tool. It contains what ...
0
votes
3answers
86 views

Unpacking (r,g,b) raw pixel buffer in C

currently trying to use C for a job previously done in python (pypy). I figured i'd try to write it in C (for optimal speed), and use the ctypes to communicate. Now what I want to do is to take the ...
2
votes
1answer
107 views

Using threading lock in ctypes callback function

I want to use a ctypes dll from a twisted application. Minimal example concocted here: from ctypes import * from threading import Lock lock = Lock() dll = windll.LoadLibrary('mydll.dll') l = ...
1
vote
1answer
101 views

Python ctypes how to read array from a void pointer return

So I am trying to read an unsigned short array which is returned by a void pointer in the c library I am using. The function definition in the header is like this: void* Foo(int a, int b) This ...
0
votes
0answers
65 views

Getting error with dll while importing ctypes in python

I am using Python 2.5.2 on Windows XP and I am trying to use ctypes in a python script by importing it (import ctypes). Now I am getting following error: File "C:\Python25\Lib\ctypes\__init__.py", ...
0
votes
1answer
38 views

Importing ctypes and tempfile causes 'Aborted' on execution?

I stumbled across the following in one of my modules and am trying to understand what is happening. At the most basic level I have a file like this: # myfile.py # import ctypes import tempfile if ...
0
votes
1answer
46 views

Using C datatypes with ctypes in python

I tried to use C char pointer datatype in python 3.3. I used following code: from ctypes import * firstname = c_char_p("I am a noob programmer".encode("utf-8")) print(firstname.value) ...
1
vote
1answer
107 views

Emulate Touch Event in Windows 8 using Python

I am trying to write a sort of driver using python for windows 8. I will be receiving touch coordinates via serial which I then want to use to make it appear as though someone touched those ...
1
vote
2answers
93 views

Python NameError: name 'ctypes' is not defined

I am trying to call a function from a custom .dll file. But when I try to load my library SDK.dll, i get the following error. I am following the indications found here: Python import dll Does anyone ...
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
108 views

Do python ctypes differ from c++ when dealing with winapi?

I prefer a dynamic language like python as it has easier syntax than strongly typed languages like c++ I will be writing code that extensively uses win32 api and my question is whether ctypes differ ...
2
votes
1answer
84 views

modify a python list from C++

I got a Python list which I can obtain its pointer and pass this pointer address to C++ to work on MyPointer = TheList.as_pointer() now I pass this address to C++ with ctypes in C++ I can do the ...
1
vote
0answers
57 views

Python ctypes. How to pass IN LPVOID to C++ function

I am trying to use ctypes to pass a string to a C++ function, and get one in return. The function declaration is: BOOL PERFORMAXCOM_API _stdcall SendReceive(IN HANDLE pHandle, ...
0
votes
0answers
54 views

Python crashes when dereferencing external ctypes pointers

I'm playing with ctypes and ReadProcessMemory in windows. I would like to be able to read a chunk of memory and cast it into a ctypes type then access the correct values. Currently this fails when ...
0
votes
0answers
50 views

python ctypes and kdtree.c library

I'm trying to use kdtree by calling C from python 2.x: The equivalent C is: void *kd1 long double data_x,data_y,data_z; kd2 = kd_create(3); for(i=0; i<nrows1; i++) { kd_insert3(kd2, ...
1
vote
1answer
52 views

Using ctypes to write callbacks that pass-in pointer to pointer parameters to be used as output-parameter

I am using ctypes to interface python code with a legacy C DLL. The DLL expects that I give it a function pointer to be used as a callback, that then will be called from within the DLL. The C ...
1
vote
1answer
124 views

Check if an arbitrary user is in Administrator Group with Python

Is there a way to check if any given user is in the Administrator's Group? I know how to check if the current user is an admin using: import ctypes print ctypes.windll.shell32.IsUserAnAdmin() ...
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
68 views

How to catch printer event in python

I want to catch the signal when the printer started to print. That would be fine if you tell me how to get the path of document that will print. pywin32print looks like useful but i dont know how to ...
0
votes
1answer
78 views

Printing Simple message in Python

I have installed Python 2.7.3 and PyScripter. When I'm trying to run this simple code, the interupter doesn't show anything: from ctypes import * msvcrt = cdll.msvcrt message_string = "Hello ...

1 2 3 4 5 16