Changeset 101140 in vbox
- Timestamp:
- Sep 18, 2023 11:08:15 AM (19 months ago)
- svn:sync-xref-src-repo-rev:
- 159113
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/types.h
r100006 r101140 3703 3703 /** Pointer to a long value. */ 3704 3704 unsigned long RT_FAR *pul; 3705 /** Pointer to a byte value. */ 3706 uint8_t RT_FAR *pb; 3705 3707 /** Pointer to a 8-bit unsigned value. */ 3706 3708 uint8_t RT_FAR *pu8; … … 3750 3752 /** Pointer to a long value. */ 3751 3753 unsigned long const RT_FAR *pul; 3754 /** Pointer to a byte value. */ 3755 uint8_t const RT_FAR *pb; 3752 3756 /** Pointer to a 8-bit unsigned value. */ 3753 3757 uint8_t const RT_FAR *pu8; … … 3797 3801 /** Pointer to a long value. */ 3798 3802 unsigned long volatile RT_FAR *pul; 3803 /** Pointer to a byte value. */ 3804 uint8_t volatile RT_FAR *pb; 3799 3805 /** Pointer to a 8-bit unsigned value. */ 3800 3806 uint8_t volatile RT_FAR *pu8; … … 3844 3850 /** Pointer to a long value. */ 3845 3851 unsigned long const volatile RT_FAR *pul; 3852 /** Pointer to a byte value. */ 3853 uint8_t const volatile RT_FAR *pb; 3846 3854 /** Pointer to a 8-bit unsigned value. */ 3847 3855 uint8_t const volatile RT_FAR *pu8;
Note:
See TracChangeset
for help on using the changeset viewer.