Changeset 48934 in vbox
- Timestamp:
- Oct 7, 2013 9:12:09 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 89631
- Location:
- trunk/include
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/RemoteDesktop/VRDEVideoIn.h
r48514 r48934 244 244 uint8_t u8FormatId; /* The unique identifier of the format on the client. */ 245 245 uint8_t u8FormatType; /* MJPEG etc. VRDE_VIDEOIN_FORMAT_* */ 246 uint8_t u8FormatFlags; /* VRDE_VIDEOIN_F_FMT_* */ 246 uint8_t u8FormatFlags; /* VRDE_VIDEOIN_F_FMT_* */ 247 247 uint8_t u8NumFrames; /* Number of following VRDEVIDEOINFRAMEDESC structures. */ 248 248 uint16_t u16Reserved; /* Must be set to 0. */ … … 873 873 VRDEVIDEOINMSGHDR hdr; 874 874 VRDEVIDEOINDEVICEDESC Device; 875 /* 875 /* 876 876 * VRDEVIDEOINFORMATDESC[0] 877 877 * VRDEVIDEOINFRAMEDESC[0] -
trunk/include/VBox/VBoxTpG.h
r44529 r48934 131 131 static VTGPROBELOC a_VarName; \ 132 132 __asm__ (".stabs \"__VTGPrLcSet\", 23, 0, 0, _" #a_VarName ); 133 133 134 134 # else 135 135 # error "Unsupported Darwin compiler!" -
trunk/include/VBox/VMMDev.h
r47294 r48934 35 35 #include <iprt/assert.h> 36 36 37 37 38 38 #pragma pack(4) /* force structure dword packing here. */ 39 39 RT_C_DECLS_BEGIN -
trunk/include/VBox/com/Guid.h
r44528 r48934 194 194 mGuidState = INVALID_GUID; 195 195 } 196 else 196 else 197 197 { 198 198 if (isEmpty()) -
trunk/include/VBox/vmm/pdmcritsectrw.h
r45299 r48934 96 96 #endif 97 97 98 -
trunk/include/iprt/assert.h
r47619 r48934 316 316 317 317 /** @def RTASSERT_OFFSET_OF() 318 * A offsetof() macro suitable for compile time assertions. 318 * A offsetof() macro suitable for compile time assertions. 319 319 * Both GCC v4 and VisualAge for C++ v3.08 has trouble using RT_OFFSETOF. 320 320 */ … … 411 411 #define AssertCompileMembersAtSameOffset(type1, member1, type2, member2) \ 412 412 AssertCompile(RTASSERT_OFFSET_OF(type1, member1) == RTASSERT_OFFSET_OF(type2, member2)) 413 413 414 414 /** @def AssertCompileMembersSameSize 415 415 * Asserts that members of two different structures have the same size. -
trunk/include/iprt/getopt.h
r45375 r48934 173 173 RTNETADDRIPV4 IPv4Addr; 174 174 /** A RTGETOPT_REQ_IPV4CIDR option argument. */ 175 struct 176 { 177 178 175 struct 176 { 177 RTNETADDRIPV4 IPv4Network; 178 RTNETADDRIPV4 IPv4Netmask; 179 179 } CidrIPv4; 180 180 #endif -
trunk/include/iprt/manifest.h
r46980 r48934 499 499 * @param pvBuf Pointer to memory buffer of the manifest file. 500 500 * @param cbSize Size of the memory buffer. 501 * @param penmDigestType Where to return the first digest type found in 501 * @param penmDigestType Where to return the first digest type found in 502 502 * the manifest. 503 503 * @deprecated Use the RTMANIFEST based API instead. -
trunk/include/iprt/sha.h
r45227 r48934 221 221 * @returns iprt status code. 222 222 * 223 * @param pvBuf Memory buffer to create a 223 * @param pvBuf Memory buffer to create a 224 224 * SHA256 digest for. 225 225 * @param cbBuf The amount of data (in bytes). … … 235 235 * @returns iprt status code. 236 236 * 237 * @param pszFile Filename to create a SHA256 237 * @param pszFile Filename to create a SHA256 238 238 * digest for. 239 239 * @param ppszDigest On success the SHA256 digest. -
trunk/include/iprt/system.h
r44528 r48934 200 200 #define RTSYSTEM_SHUTDOWN_REBOOT UINT32_C(0) 201 201 /** Reboot the system after shutdown. 202 * The call may return VINF_SYS_MAY_POWER_OFF if the OS / 202 * The call may return VINF_SYS_MAY_POWER_OFF if the OS / 203 203 * hardware combination may power off instead of halting. */ 204 204 #define RTSYSTEM_SHUTDOWN_HALT UINT32_C(1) … … 230 230 * depending on the OS. 231 231 * @retval VINF_SUCCESS 232 * @retval VINF_SYS_MAY_POWER_OFF 233 * @retval VERR_SYS_SHUTDOWN_FAILED 234 * @retval VERR_SYS_CANNOT_POWER_OFF 235 * 232 * @retval VINF_SYS_MAY_POWER_OFF 233 * @retval VERR_SYS_SHUTDOWN_FAILED 234 * @retval VERR_SYS_CANNOT_POWER_OFF 235 * 236 236 * @param cMsDelay The delay before the actual reboot. If this is 237 237 * not supported by the OS, an immediate reboot
Note:
See TracChangeset
for help on using the changeset viewer.