I have a mulit-dimension array that contains various information about a list of files, as in:
I want to be able to pass an entry in the array as a single dimension array, like this:
I have used some languages that can do this(Although I can't remember which at this moment). Is this possible in AutoIt, or is there another simple way to do this? Objects or structures would be great, but they don't seem to be available.
Dim $array[10][$last] Enum $f_name, $f_size, $f_create, $f_text, $f_modified, $f_last
I want to be able to pass an entry in the array as a single dimension array, like this:
My_Func($array[$x])The function could then operate on just a single dimension of the array
I have used some languages that can do this(Although I can't remember which at this moment). Is this possible in AutoIt, or is there another simple way to do this? Objects or structures would be great, but they don't seem to be available.