# First of all, need to read python doc. about ctypes.. from ctypes import * class Obj(Structure) : _fields_ = [("name", c_char_p), ("id", c_int)] class Person(Structure) : _fields_ = [("stInfo", Obj)] def __init__(self, person=None): self.stInfo = Obj() if person is not None : self.stInfo = person.stInfo def __str__(self) : return "I'm %s, and my id is %d" % (self.stInfo.name, self.stInfo.id) q..
- 먼저 MSVC++(Express 버전)에서 dll을 만든다. dll의 내용이 되는 소스는 다음과 같다. // PyDll.cpp -> PyDll.dll struct St { int x; char * str; double f; }; extern "C" __declspec(dllexport) void func(void* st) { St temp = {1, "Hello", 3.14}; *((St*)st) = temp; } - Python에서 dll을 import한 다음 dll에 정의되어 있는 구조체와 동일한 구조를 갖는 ctypes.Structure를 정의한다. 그 다음 정의한 ctypes.Structure의 객체를 byref()를 통해 dll에 있는 함수에게 넘겨준다. from ctypes import *..
- Total
- Today
- Yesterday
- 볼륨 조절
- C++
- TCGA
- how to solve it
- MSVC++
- GSX 1200 pro
- TensorBoard
- QPrinter.Letter
- cython
- Visual C++
- volume dial
- CanDrA
- pandas
- Python
- QT
- Accelerated C++
- tensorflow
- dll
- GSX 1000 pro
- structure
- armadillo c++
- QPrinter.A4
- 볼륨 낮춤
- Item 9
- matrix multiplication
- destructor
- 설치
- ctypes
- PyQt
- 이상한 문자
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |