c++生成dll使用python调用dll的方法

雨,落在校园里!我撑着伞,慢慢地在雨中漫步。那嫣红的风凰叶,在雨中,轻轻地飘落下来,似乎有一段离别哀愁的情感啊!

第一步,建立一个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的方法到此结束。抉择是一种智慧,更是一种心的写照。小编再次感谢大家对我们的支持!

标签: dll python