Jump to content

Recommended Posts

Posted

My autoit crashed with out any errors.

Here's my autoit code

$call = DllCall("formulas.dll","int","sum","int",3)
MsgBox(0,"",$call[0])

and here's my C made DLL

#include "stdafx.h"
#include "windows.h"

#define DLL extern "C" __declspec(dllexport)

DLL int sum(int a)

Any idea why autoit crashes with it?
{
    return a;
}

edited

Posted (edited)

First thing that sticks out is that you set the function to use cdecl but use stdcall from AutoIt (see DllCall() in helpfile).

Change to:

$call = DllCall("formulas.dll","int:cdecl","sum","int",3)

And it works.

Edit:

Also these three lines look unnecessary:

#include "stdafx.h"
#include "windows.h"
Any idea why autoit crashes with it?

:blink:

Edited by AdmiralAlkex

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
  • Recently Browsing   0 members

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