Jump to content

DLLcall


Recommended Posts

I have a hardware device that has a .DLL to control it. The description does of course use C notation, and I want to use AutoIt.

The package contains a .lib, a .h, and a .dll file. A SDK command list gives:

BOOL DT_Robot_Init(HWND hWnd , int RobotTypeID, int DeviceID, char* ComX);

with the parameterdescription:

hWnd : The window handle

RobotTypeID : Name:1

DeviceID : Reserved

ComX : Reserved

The .h file contains the lines:

enum DTRobotTypes{rtNone,rtMiniCubis,rtPronto};

//---------------------------------------------------------------------

extern "C" __declspec(dllexport) BOOL DT_Robot_Init(HWND hWnd,int RobotTypeID,int DeviceID,char* ComX);

So; the question is how do I translate this?

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...