![]() |
| | #1 |
| Guest
Posts: n/a
| what is the significance of low order and high order bits |
|
| | #2 |
| erstwhile Join Date: Jan 2002
Posts: 2,223
| When you are talking about 'bits', i'll assume you mean 'WORD's'. It's for backward compatibility/is a legacy from 16 bit architectures. Look up the macro definitions for HIWORD, LOWORD,HIBYTE and LOBYTE to see how they chop WPARAM's and LPARAM's (32 bit values) and WORD's(16 bit values) into smaller chunks. From windef.h (aug2001psdk): Code: typedef UINT_PTR WPARAM; typedef LONG_PTR LPARAM; Code: typedef UINT WPARAM; typedef LONG LPARAM; edit: formatting
__________________ CProgramming FAQ Caution: this person may be a carrier of the misinformation virus. |
| Ken Fitlike is offline | |
![]() |
| Thread Tools | |
| Display Modes | |
|
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| sorting using pointer to pointer not working | eager2no | C Programming | 17 | 09-21-2008 12:52 AM |
| [Tutorial] Implementing the Advanced Encryption Standard | KONI | C Programming | 16 | 11-23-2007 01:48 PM |
| temperature sensors | danko | C Programming | 22 | 07-10-2007 07:26 PM |