Closed SwadicalRag closed 5 years ago
Should I make a new extAttr for this?
interface Test { void Func([String="inStr"] any str, [StringLength="inStr"] any len); };
and len is automatically filled in by the compiler as size_t + str is filled in as char * or unsigned char * if [Unsigned] also present.
len
size_t
str
char *
unsigned char *
[Unsigned]
Obsolete due to #14
Should I make a new extAttr for this?
and
len
is automatically filled in by the compiler assize_t
+str
is filled in aschar *
orunsigned char *
if[Unsigned]
also present.