convert from on to another *again
ok I think MS over did it with the typedef deal its annoying HWND is a long int is it not...?
But I can't assign a HWND to a long...? and i can't make a conversion from HWND to char at least i haven't found away to yet... so how does one convert a HWND to a Char so that one might TextOut the HWND to a HDC yet another long ......
is there a place where i can find these answers with ease not MSDN it isn't there in any form i can find..... I'm headed to planet-source-code now maybe they have something....
Thanks
umm i think this is correct
1 Byte = 00 to FF = 0 to 255 (Byte in vb)
(2 Bytes)Word = 00 00 to FF FF = 0 to 65535 ( int in vb)
(4 Bytes)DWord =00 00 00 00 to FF FF FF FF = 0 to 4294967295 (long in vb)
(8 Bytes)QWord = 00 00 00 00 00 00 00 00 to FF FF FF FF FF FF FF FF = 0 to 18446744073709551615 (the big bad float)
that is unsigned mind you split it in half if you want to have -+ signed numbers
i'm not sure but i think those are the corrrect valuse and memory usages
i could talk about conversion to hex and binary and oct and dec but i find that to be to much typing and then there is always how each word get reversed in memory ugghhh