Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
To store a 64-bit pointer value, use ULONG_PTR. A ULONG_PTR value is 32 bits when compiled with a 32-bit compiler and 64 bits when compiled with a 64-bit compiler.
The following examples use real-world code that has been ported to 64-bit Windows. Commentary on the steps to make the code 64-bit compatible is included.
Example 1: Getting an Address
The following code illustrates a portable way to get an address.
Method | Result |
---|---|
Using ULONG (a 32-bit-only method) |
|
Using ULONG_PTR (the portable method) |
|
Example 2: Calculating an Address
The following code illustrates a portable way to calculate an address.
Method | Result |
---|---|
Using ULONG (a 32-bit-only method) |
|
Using ULONG_PTR (the portable method) |
|