Jump to content

msdn and Structure/Constructor


Recommended Posts

No, that seems to be .net type which autoit has no access to.

However you can include StuctureConstants.au3 and use $tagPOINT

Which ends up something like.

Global Const $tagPOINT = "struct;long X;long Y;endstruct"
$MyPoint = DllStructCreate($tagPOINT)
$x = $MyPoint[1]
$y = $MyPoint[2]

That's only if you need a point for use with external dll.

AutoIt Absolute Beginners    Require a serial    Pause Script    Video Tutorials by Morthawt   ipify 

Monkey's are, like, natures humans.

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