Location:
e32def.h
Link against:
typedef void TAny;
Supported from 5.0
Pointer to any type.
TAny*
is equivalent to void*
in standard
C or C++. TAny*
is used in preference to void*
because it is more suggestive of the actual meaning, e.g. TAny*
foo();
.
TAny
is not used where it really means "nothing", as
in the declaration of functions which do not return a value; void is used
instead, e.g. void Foo();
.