﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
2220	C struct-like syntax	matwachich@…		"Hello!
When I see the new AutoIt beta (3.9.xx), I think it's the moment to ask for some new features!

So I'd like for AutoIt is: a C-struct-like syntax.
I mean, rather than using DllStructxxx functions, it would be great to be able to access directly to the members of a DllStruct, just like we will do it in C

Example:
{{{
$struct = DllStructCreate(""int first;uint unsigned;str text"")
$struct.first = 10
$struct.unsigned = 20
$struct.text = ""Hello world!""

; And why not, something like...
$ptr = DllStructGetPtr($struct)
$ptr->first = 15
$ptr->unsigned += 30
}}}

So, I don't know how hard this would be to implement, and if it's possible.

Anyway, thanks for reading me."	Feature Request	closed		AutoIt		None	Rejected		
