ironpython调用c dll_Python使用ctypes库调用外部DLL

Python:

使用

ctypes

库调用外部

DLL

Python

ctypes

ctypes

Python

C

便

C DLL

Python2.5

ctypes 1.1

ctypes

ctypes

使

cdecl

DLL

view sourceprint?1 from ctypes import *;

2 h=CDLL('msvcrt.dll')

3 h.printf('a=%d,b=%d,a+b=%d',1,2,1+2);

a=1,b=2,a+b=3

二、加载库和普通函数的调用

官方

API

提供的库中有几个主要的函数:

view sourceprint?01 //

初始化

02

int

DCSPCLIENTDLL

InitInterface(

const

char

*pCenterIP,

const

unsigned

short

nUpLinkSvrPort,const unsigned short nDownLinkSvrPort );

03

04 //

释放资源

05 int DCSPCLIENTDLL FiniInterface( void );

06

07 //

登录

08

int

DCSPCLIENTDLL

Login(

const

unsigned

int

uiBranchPlatformID,

const

unsigned

int

nUserID,

const char *pPassword );

09 //

注销

你可能感兴趣的:(ironpython调用c,dll)