This is one of many exported routines from a EHLLAPI.DLL, I decided since I have some time to complete the porting over....
It's about 6 pages all told, one page left, the exported routines..
Scott
[This message has been edited by Scott Turchin (edited May 07, 2001).]
It's about 6 pages all told, one page left, the exported routines..
Code:
I'm assuming this: typedef struct tagATMSystem { Word wHLLAPIVersionNumber; Word wHLLAPILevelNumber; } ATMSYSTEM, NEAR * NPATMSYSTEM, FAR * LPATMSYSTEM; ' ' Word WINAPI HLL_AttachmateQuerySystem ( HWND hWnd, LPATMSYSTEM lpATMSystem); Would come out as: ' ' (I validated the TYPE structure in a previous post months ago) Type ATMSystem wHLLAPIVersionNumber As Word wHLLAPILevelNumber As Word End Type ' ' Declare Function HLL_AttachmateQuerySystem LIB "EHLLAPI.DLL"(hWnd as long,lpATMSystem As ATMSYSTEM) As Long (Word?)
[This message has been edited by Scott Turchin (edited May 07, 2001).]
Comment