Jump to content

pass char from dll c++ to autoit


roby
 Share

Recommended Posts

Hi,

I have a little problem, big for me...

I write a dll for serial comunication. The function below, receive the characters from rsr232 and function, but the value don't pass to dllCall().. WHY???

Where do I mistake??

extern "C" __declspec(dllexport) char GetByte()

{

char rxchar;

BOOL bReadRC;

static DWORD iBytesRead;

bReadRC = ReadFile(hCom, &rxchar, 1, &iBytesRead, NULL);

if (bReadRC) {

if (rxchar.GetByte(1) != NULL) {

return rxchar;

}

} // return 0 if no character read

}

This is syntax of dllCall:

$byteTmp = DllCall('commg.dll','str:cdecl','GetByte')

Is it good?

Thank you

Regards Roby

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...