Python 中嵌入MFC的DLL實例

一、建立 DLL工程項目MFCTestDLLpython (1)建立hello.hclass class A { public:  A();  ~A();  void Hello(); };import (2)建立hello.cppfile #include "stdafx.h" #include "Hello.h" A::A() { } A::~A() { } void A::Hello() {
相關文章
相關標籤/搜索