calling dll function from php program

Posted by satish-fbg on Stack Overflow See other posts from Stack Overflow or by satish-fbg
Published on 2010-05-10T08:51:08Z Indexed on 2010/05/10 8:54 UTC
Read the original article Hit count: 197

Filed under:

I've made a program in php where i got to call a dll function.. that dll contains some hashcode.. i call this dll's function from vb6 through this code:

Private Declare Function GetHash Lib "hashGen.dll" (ByVal tEncode As String) As Long Private Sub get_Key() MsgBox GetHash("hello world") end sub

can anybody tell me how to call this function in PHP?

here's my dll file:
http://www.4shared.com/file/-hdichIS/hashGen.html

thnx..

© Stack Overflow or respective owner

Related posts about php