Newsgroups : Borland : borland.public.delphi.nativeapi.win32 : 2007 Nov : Question About Types
| Subject: | Question About Types |
| Posted by: | "Carlos" (cebas..@gmail.com) |
| Date: | 16 Nov 2007 10:37:25 |
Hello,
I'm very interested in discovering why some codes use diferents methods
of types but looking these types, are always pointing for the same
way...
Example:
UINT = LongWord;
DWORD = LongWord;
WPARAM = Longint;
LPARAM = Longint;
LRESULT = Longint;
THandle = System.THandle;
System.THandle -> THandle = LongWord;
Ok, then
Function Foo: UINT; and Function Foo: DWORD;
or
Function Foo: THandle; and Function Foo: LongWord;
are basically the same thing?
Why these name?
Yeah, stupid question, but im wondering if someone knows why all these
names because im always trying to learn more things and about it im
very confused... seems to be the same thing but with different names
Thanks in advance =D
Carlos
--