Changeset 107775 in vbox for trunk/include/iprt/cdefs.h
- Timestamp:
- Jan 15, 2025 1:03:17 PM (4 months ago)
- svn:sync-xref-src-repo-rev:
- 166911
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/cdefs.h
r107216 r107775 4250 4250 # define _512K UINT32_C(0x00080000) 4251 4251 #endif 4252 /** 1 M (Mega) (1 048 576). */4252 /** 1 M (Mega) (1 048 576). (32-bit) */ 4253 4253 #if ARCH_BITS != 16 4254 4254 # define _1M 0x00100000 4255 4255 #else 4256 4256 # define _1M UINT32_C(0x00100000) 4257 #endif 4258 /** 1 M (Mega) (1 048 576). (64-bit) */ 4259 #if ARCH_BITS != 16 4260 # define _1M64 0x001000000LL 4261 #else 4262 # define _1M64 UINT64_C(0x001000000) 4257 4263 #endif 4258 4264 /** 2 M (Mega) (2 097 152). */
Note:
See TracChangeset
for help on using the changeset viewer.