0

A DLL provides a pointer to a 1D array in my C code like this:

__int16 *data = Msg_RowAt(surfaceMsg, rowIdx);

//access the values like this
data[iterator]

I'm building a Python project where I need to access the values of the same array. I've tried the following but get an access violation when I try iterate surfaceData.

surfaceDataPtr = Msg_RowAt(surfaceMsg, row)
ptr = ctypes.POINTER(ctypes.c_int16)
surfaceData = ctypes.cast(surfaceDataPtr, ptr)
print("ptr: " + str(surfaceData))
print("val: " + str(surfaceData[1]))

I'm accessing the wrong memory location but I'm not too sure what I've done wrong. Can anyone see what I'm doing wrong?

3

1 Answer 1

1

You can define restype:

c.Msg_RowAt.restype = ctypes.POINTER(ctypes.c_int16)
surfaceDataPtr = Msg_RowAt(surfaceMsg, row)

Then, you can randomly access to each element:

print(surfaceDataPtr[0])
print(surfaceDataPtr[1])
...
Sign up to request clarification or add additional context in comments.

2 Comments

Thanks for the examples. I didn't really understand how to implement the restype.
@Velveteen_Brownie Nothing to implement. Python is not typed. You just assign what restype will be. In this case, Python should know surfaceDataPtr will be a C pointer to short variable.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.