- Timestamp:
- May 25, 2020 3:09:24 PM (5 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 18 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/os2/VBoxSF/VBoxSFInternal.h
r79112 r84509 87 87 uint8_t cchName; 88 88 /** The shared folder name. If there is a tag it follows as a second string. */ 89 RT_FLEXIBLE_ARRAY_EXTENSION 89 90 char szName[RT_FLEXIBLE_ARRAY]; 90 91 } VBOXSFFOLDER; -
trunk/src/VBox/Devices/VirtIO/Virtio_1_0.cpp
r84468 r84509 96 96 uint16_t fFlags; /**< flags avail ring guest-to-host flags */ 97 97 uint16_t uIdx; /**< idx Index of next free ring slot */ 98 RT_FLEXIBLE_ARRAY_EXTENSION 98 99 uint16_t auRing[RT_FLEXIBLE_ARRAY]; /**< ring Ring: avail drv to dev bufs */ 99 100 /* uint16_t uUsedEventIdx; - used_event (if VIRTQ_USED_F_EVENT_IDX) */ … … 110 111 uint16_t fFlags; /**< flags used ring host-to-guest flags */ 111 112 uint16_t uIdx; /**< idx Index of next ring slot */ 113 RT_FLEXIBLE_ARRAY_EXTENSION 112 114 VIRTQ_USED_ELEM_T aRing[RT_FLEXIBLE_ARRAY]; /**< ring Ring: used dev to drv bufs */ 113 115 /* uint16_t uAvailEventIdx; - avail_event if (VIRTQ_USED_F_EVENT_IDX) */ -
trunk/src/VBox/Devices/testcase/tstDeviceInternal.h
r83296 r84509 131 131 size_t cbAlloc; 132 132 /** Start of the real allocation. */ 133 RT_FLEXIBLE_ARRAY_EXTENSION 133 134 uint8_t abAlloc[RT_FLEXIBLE_ARRAY]; 134 135 } TSTDEVMMHEAPALLOC; -
trunk/src/VBox/HostServices/GuestControl/VBoxGuestControlSvc.cpp
r83506 r84509 843 843 uint32_t cbKey; 844 844 /** The key bytes. */ 845 RT_FLEXIBLE_ARRAY_EXTENSION 845 846 uint8_t abKey[RT_FLEXIBLE_ARRAY]; 846 847 } GstCtrlPreparedSession; -
trunk/src/VBox/HostServices/SharedClipboard/VBoxSharedClipboardSvc-internal.h
r84142 r84509 57 57 uint32_t cParms; 58 58 /** HGCM parameters. */ 59 RT_FLEXIBLE_ARRAY_EXTENSION 59 60 VBOXHGCMSVCPARM aParms[RT_FLEXIBLE_ARRAY]; 60 61 } SHCLCLIENTMSG; -
trunk/src/VBox/Runtime/common/checksum/manifest2.cpp
r82968 r84509 65 65 bool fVisited; 66 66 /** The normalized property name that StrCore::pszString points at. */ 67 RT_FLEXIBLE_ARRAY_EXTENSION 67 68 char szName[RT_FLEXIBLE_ARRAY]; 68 69 } RTMANIFESTATTR; -
trunk/src/VBox/Runtime/common/dbg/dbgmodmapsym.cpp
r82968 r84509 67 67 uint8_t cchMaxSym; /**< 0x0e: Maximum symbol-name length. */ 68 68 uint8_t cchModule; /**< 0x0f: Length of the module name. */ 69 RT_FLEXIBLE_ARRAY_EXTENSION 69 70 char achModule[RT_FLEXIBLE_ARRAY]; /**< 0x10: Module name, length given by cchModule. */ 70 71 } MAPSYMHDR; … … 92 93 uint16_t u16Reserved2; /**< 0x12: Reserved / unknown. Often seen holding 0xff00. */ 93 94 uint8_t cchSegName; /**< 0x14: Segment name length. */ 95 RT_FLEXIBLE_ARRAY_EXTENSION 94 96 char achSegName[RT_FLEXIBLE_ARRAY]; /**< 0x15: Segment name, length given by cchSegName. */ 95 97 } MAPSYMSEGDEF; … … 122 124 uint16_t cLines; /**< 0x08: Number of line numbers in the array. */ 123 125 uint8_t cchSrcFile; /**< 0x0a: Length of source filename. */ 126 RT_FLEXIBLE_ARRAY_EXTENSION 124 127 char achSrcFile[RT_FLEXIBLE_ARRAY]; /**< 0x0b: Source filename, length given by cchSrcFile. */ 125 128 } MAPSYMLINEDEF; -
trunk/src/VBox/Runtime/common/fs/RTFsCmdLs.cpp
r82968 r84509 64 64 size_t cchName; 65 65 /** The entry name. */ 66 RT_FLEXIBLE_ARRAY_EXTENSION 66 67 char szName[RT_FLEXIBLE_ARRAY]; 67 68 } RTCMDLSENTRY; … … 90 91 91 92 /** The collection name (path). */ 93 RT_FLEXIBLE_ARRAY_EXTENSION 92 94 char szName[RT_FLEXIBLE_ARRAY]; 93 95 } RTCMDLSCOLLECTION; -
trunk/src/VBox/Runtime/common/fs/fatvfs.cpp
r82968 r84509 320 320 const char *pszName; 321 321 /** Cache entries. */ 322 RT_FLEXIBLE_ARRAY_EXTENSION 322 323 RTFSFATCLUSTERMAPENTRY aEntries[RT_FLEXIBLE_ARRAY]; 323 324 } RTFSFATCLUSTERMAPCACHE; -
trunk/src/VBox/Runtime/common/fs/isomaker.cpp
r82968 r84509 258 258 uint16_t cchName; 259 259 /** The name. */ 260 RT_FLEXIBLE_ARRAY_EXTENSION 260 261 char szName[RT_FLEXIBLE_ARRAY]; 261 262 } RTFSISOMAKERNAME; … … 448 449 uint16_t cchTarget; 449 450 /** The symbolic link target. */ 451 RT_FLEXIBLE_ARRAY_EXTENSION 450 452 char szTarget[RT_FLEXIBLE_ARRAY]; 451 453 } RTFSISOMAKERSYMLINK; -
trunk/src/VBox/Runtime/common/ldr/ldrLX.cpp
r82968 r84509 157 157 uint32_t cSegments; 158 158 /** Segment info. */ 159 RT_FLEXIBLE_ARRAY_EXTENSION 159 160 RTLDRSEG aSegments[RT_FLEXIBLE_ARRAY]; 160 161 } KLDRMODLX, *PKLDRMODLX; -
trunk/src/VBox/Runtime/common/vfs/vfsfss2dir.cpp
r84192 r84509 65 65 /** The name (relative to RTVFSFSSWRITE2DIR::szBaseDir). */ 66 66 #endif 67 RT_FLEXIBLE_ARRAY_EXTENSION 67 68 char szName[RT_FLEXIBLE_ARRAY]; 68 69 } RTVFSFSSWRITE2DIRENTRY; … … 87 88 #else 88 89 /** Path to the directory that all operations are relative to. */ 90 RT_FLEXIBLE_ARRAY_EXTENSION 89 91 char szBaseDir[RT_FLEXIBLE_ARRAY]; 90 92 #endif -
trunk/src/VBox/Runtime/common/vfs/vfsstddir.cpp
r82968 r84509 75 75 PRTVFSSTDDIR pDir; 76 76 /** The symbolic link name. */ 77 RT_FLEXIBLE_ARRAY_EXTENSION 77 78 char szSymlink[RT_FLEXIBLE_ARRAY]; 78 79 } RTVFSSTDSYMLINK; -
trunk/src/VBox/Runtime/generic/ftp-server.cpp
r82842 r84509 105 105 size_t cchName; 106 106 /** The entry name. */ 107 RT_FLEXIBLE_ARRAY_EXTENSION 107 108 char szName[RT_FLEXIBLE_ARRAY]; 108 109 } RTFTPDIRENTRY; -
trunk/src/VBox/Runtime/generic/http-curl.cpp
r83356 r84509 128 128 uint32_t offValue; 129 129 /** The full header field. */ 130 char szData[RT_FLEXIBLE_ARRAY]; 130 RT_FLEXIBLE_ARRAY_EXTENSION 131 RT_GCC_EXTENSION char szData[RT_FLEXIBLE_ARRAY]; 131 132 } RTHTTPHEADER; 132 133 /** Pointer to a HTTP header. */ -
trunk/src/VBox/Runtime/tools/RTLdrCheckImports.cpp
r82968 r84509 103 103 uint32_t cImports; 104 104 /** Import modules. */ 105 RT_FLEXIBLE_ARRAY_EXTENSION 105 106 RTCHECKIMPORTMODULE aImports[RT_FLEXIBLE_ARRAY]; 106 107 } RTCHECKIMPORTSTATE; -
trunk/src/VBox/ValidationKit/bootsectors/bs3kit/VBoxBs3ObjConverter.cpp
r83773 r84509 3807 3807 struct OMFDETAILSALLOC *pNext; 3808 3808 /** The allocated bytes. */ 3809 RT_FLEXIBLE_ARRAY_EXTENSION 3809 3810 uint8_t abData[RT_FLEXIBLE_ARRAY]; 3810 3811 } OMFDETAILSALLOC; -
trunk/src/VBox/ValidationKit/utils/fs/FsPerf.cpp
r83986 r84509 268 268 RTLISTNODE Entry; 269 269 uint16_t cchName; 270 RT_FLEXIBLE_ARRAY_EXTENSION 270 271 char szName[RT_FLEXIBLE_ARRAY]; 271 272 } FSPERFNAMEENTRY;
Note:
See TracChangeset
for help on using the changeset viewer.