genius257 / DllStructEx

Extended DllStruct for AutoIt3
MIT License
2 stars 1 forks source link

type alias #4

Closed genius257 closed 2 years ago

genius257 commented 3 years ago

currently if a type is not in AutoIt3 struct data types, a struct is assumed.

typedef DWORD LCID;
typedef DISPID MEMBERID;
typedef LONG DISPID;

a variable preset like the $tag should be used for struct data type aliases. maybe $type

$typeLCID = "DWORD"
$typeMEMBERID = "DISPID"
$typeDISPID = "LONG"