Posted in Python onJanuary 20, 2014
第一步,建立一个CPP的DLL工程,然后写如下代码,生成DLL
#include <stdio.h> #define DLLEXPORT extern "C" __declspec(dllexport) DLLEXPORT int __stdcall hello() { printf("Hello world!\n"); return 0; }
第二步,编写一个 python 文件:
# coding: utf-8 import os import ctypes CUR_PATH = os.path.dirname(__file__) if __name__ == '__main__': print 'starting...' dll = ctypes.WinDLL(os.path.join(CUR_PATH, 'hello.dll')) dll.hello()
c++生成dll使用python调用dll的方法
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@