0
votes
1answer
145 views
“WindowsError: exception: access violation…” - ctypes question
Howdy all -
Here is the prototype for a C function that resides in a DLL:
extern "C" void__stdcall__declspec(dllexport) ReturnPulse(double*,double*,double*,double*,double*);
In …
1
vote
2answers
23 views
Python ctypes & libspeex.dll/libspeex.so; what are the equivilents to #define, typedef, and structs?
I have a reference of the dll file here:
http://speex.org/docs/api/speex-api-reference/group__Codec.html
What I'm wondering is, in that list, there are a lot of defines. What is …
0
votes
4answers
44 views
[VB.NET] Better Way of Getting the Text Value of Cells in an Excel (*.xls) File
I'm trying to write an import function for getting data out of an excel file. How I currently do it is as follows:
Private Sub ReadExcel(ByVal childform As PhoneDiag.frmData, ByV …
8
votes
7answers
676 views
Prototyping hybrid Python code
I have been mulling over writing a peak fitting library for a while. I know Python fairly well and plan on implementing everything in Python to begin with but envisage that I may h …
0
votes
1answer
35 views
Introspecting a DLL with python
Hi. I'm currently trying to do some introspection on a DLL with python. I want to create automatically a graphical test interface based on a DLL.
I can load my DLL in python quite …
0
votes
1answer
103 views
How to use C++ classes with ctypes?
Hi there,
I'm just getting started with ctypes and would like to use a C++ class that I have exported in a dll file from within python using ctypes.
So lets say my C++ code looks …
2
votes
1answer
103 views
Python: Extracting data from buffer with ctypes
I am able to successfully call a function with ctypes in Python. I now have a buffer that is filled with Structures of data I want to extract. What is the best strategy for this? …
0
votes
1answer
106 views
How to dereference a memory location from python ctypes?
I want to replicate the following c code in python ctypes:
main() {
long *ptr = (long *)0x7fff96000000;
printf("%lx",*ptr);
}
I can figure out how to call this memory locati …
0
votes
2answers
61 views
Using enums in ctypes.Structure
I have a struct I'm accessing via ctypes:
struct attrl {
char *name;
char *resource;
char *value;
struct attrl *next;
enum batch_op op;
};
So far I have Pyt …
0
votes
1answer
46 views
Access is Denied loading a dll with ctypes on Vista
I'm having issues with using ctypes. I'm trying to get the following project running on Vista.
http://sourceforge.net/projects/fractalfrost/
I've used the project before on Vist …
1
vote
4answers
120 views
Python ctypes: copying Structure’s contents
I want to mimic a piece of C code in Python with ctypes, the code is something like:
typedef struct {
int x;
int y;
} point;
void copy_point(point *a, point *b) {
*a = *b;
…
0
votes
1answer
94 views
Python CreateFile Cannot Find PhysicalMemory
I am trying to access the Physical Memory of a Windows 2000 system (trying to do this without a memory dumping tool). My understanding is that I need to do this using the CreateFi …
0
votes
2answers
41 views
Problem when getting the content of a listbox with python and ctypes on win32
I would like to get the content of a list box thanks to python and ctypes.
item_count = ctypes.windll.user32.SendMessageA(hwnd, win32con.LB_GETCOUNT, 0, 0)
items = []
for i in xr …
0
votes
3answers
100 views
Python ctypes and not enough arguments (4 bytes missing)
The function i'm trying to call is:
void FormatError (HRESULT hrError,PCHAR pszText);
from a custom dll using windll.
c_p = c_char_p()
windll.thedll.FormatError(errcode, c_p)
…
0
votes
1answer
73 views
ctypes memory management: how and when free the allocated resources?
I'm writing a small wrapper for a C library in Python with Ctypes, and I don't know if the structures allocated from Python will be automatically freed when they're out of scope.
…
