might be simple question but pls reply
Managed C++/CLI
2
Posts
2
Posters
0
Views
1
Watching
-
Before answering this question, let me tell you. This question should be asked in
VC++
forum.kalaveer wrote:
typedef void _TY;
Its a used to synonyms. In code above, now
_TY foo();
declaration is actually equivalent tovoid foo();
Some times it is better to usetypedef
. eg.typedef char* PCHAR;
PCHAR
can be easily used throughout the code as synonym ofchar*
.Prasad Notifier using ATL | Operator new[],delete[][^]