|
|
User login
Feeds |
diference between Int and TInt
|
|||||
| Fri, 2005-08-12 12:02 | |
Forum posts: 53
Forum posts: 22
Forum posts: 723
Second: http://www.newlc.com/article.php3?id_article=3.
Third: Symbian OS overrides the basic C types. One of the reasons is that it follows its own naming convention (basic types start with T), other might be that it's independent of the underlying integer representation.
tOtE
Gabor Torok
Software architect, Agil Eight (http://www.agileight.com/)
Blog: http://mobile-thoughts.blogspot.com/
Forum posts: 173
TInt is used to solve the problem of 16-bit,32-bit or 64-bit representation of C++ compiler
e.g VC++ uses 4 bytes to represent int while turbo uses 2 bytes for int representation
So to make integer representation portable to armi irrespective of compiler used to build applicaiton, all built- in types are wrapped
http://sandy.t35.com