Changeset 37436 in vbox for trunk/src/VBox/Devices/EFI/Firmware2
- Timestamp:
- Jun 14, 2011 1:34:10 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/EFI/Firmware2/VBoxPkg/VBoxFsDxe/test/fsw_posix_base.h
r32129 r37436 45 45 #include <unistd.h> 46 46 #include <errno.h> 47 #include <stdint.h> 47 48 48 49 #define FSW_LITTLE_ENDIAN (1) … … 52 53 // types 53 54 54 typedef signed charfsw_s8;55 typedef u nsigned charfsw_u8;56 typedef shortfsw_s16;57 typedef u nsigned short fsw_u16;58 typedef longfsw_s32;59 typedef u nsigned longfsw_u32;60 typedef long longfsw_s64;61 typedef u nsigned long longfsw_u64;55 typedef int8_t fsw_s8; 56 typedef uint8_t fsw_u8; 57 typedef int16_t fsw_s16; 58 typedef uint16_t fsw_u16; 59 typedef int32_t fsw_s32; 60 typedef uint32_t fsw_u32; 61 typedef int64_t fsw_s64; 62 typedef uint64_t fsw_u64; 62 63 63 64
Note:
See TracChangeset
for help on using the changeset viewer.