VB로 정의된 내용을 델파이에서 선언하여 쓰려 합니다.
DLL은 VC++로 개발되었습니다....
Private Declare Function mdSend Lib "MDFUNC32.DLL" Alias "mdsend" (ByVal Path As Long, ByVal Stno As Integer, ByVal Devtyp As Integer, ByVal devno As Integer, size As Integer, buf As Any) As Integer
Private Declare Function mdReceive Lib "MDFUNC32.DLL" Alias "mdreceive" (ByVal Path As Long, ByVal Stno As Integer, ByVal Devtyp As Integer, ByVal devno As Integer, size As Integer, buf As Any) As Integer
그럼 부탁드립니다....^^
선언
function mdSend ( path : long ; stno : Integer ; Devtyp : integer ;
devno : integer ; buf : pchar) : integer ; stdcall; external 'C:\MDFUNC32.DLL';
이렇게 하면 될것 같은데요
dll 호출하는 방법이 Lib 로드 해서 하는 방법도 있습니다