2004-08-06 Marcel Telka <marcel@telka.sk>

* win32/stdint.h (uintptr_t): Changed type definition from DWORD_PTR to UINT_PTR.


git-svn-id: https://urjtag.svn.sourceforge.net/svnroot/urjtag/trunk@600 b68d4a1b-bc3d-0410-92ed-d4ac073336b7
master
Marcel Telka 21 years ago
parent f103455c5c
commit 5e7aa7955f

@ -1,3 +1,7 @@
2004-08-06 Marcel Telka <marcel@telka.sk>
* win32/stdint.h (uintptr_t): Changed type definition from DWORD_PTR to UINT_PTR.
2003-11-19 Marcel Telka <marcel@telka.sk>
* configure.ac (AC_INIT): Changed version number to 0.3.3.

@ -4,6 +4,7 @@ include-0.3.3:
* Added Renesas SH7750 CCN registers.
* Added more manufacturer entries into Manufacturer's Identification Code database.
* Ported uintptr_t type in win32/stdint.h to old Windows SDK.
* Changes in brux common headers:
- Added new parameter (adr) for detectflash function

@ -42,7 +42,7 @@
* Integer Types
*/
/* Exactly-width integer types */
/* Exact-width integer types */
typedef CHAR int8_t;
typedef SHORT int16_t;
@ -79,7 +79,7 @@ typedef UINT64 uint_fast64_t;
/* Integer types capable of holding object pointers */
typedef INT_PTR intptr_t;
typedef DWORD_PTR uintptr_t;
typedef UINT_PTR uintptr_t;
/* Greatest-width integer types */

Loading…
Cancel
Save