﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
2890	DllStructGetString	Mars (AutoIt.de)	Jon	"Request: DllStructGetString: Struct -> String
Returns the string used to create the struct.
;---------------------------------------------

Currently, it is impossible to get the string that was used to create a DllStruct.

For example: Try to write a _DllStructToString($vStr) (and vice versa) function. (like Array2Str and Str2Array). Without DllStructGetString this should be very hard to manage.

Surely it is possible to pass the string otherways (workarounds are never the best way...), but that is not the point. AutoIt should ""know"" that string, because you can access the structcontent via ""abc"". So it should be easy to create a BuildIn function that can return it.

{{{
Global $vStr = DllStructCreate('int;double')
Global $sStr = DllStructGetString($vStr)
;~ $sStr = 'int;double'
}}}

mfg
Mars"	Feature Request	assigned		AutoIt		None		DllStructGetString	
