Changeset 48934 in vbox for trunk/include/iprt
- Timestamp:
- Oct 7, 2013 9:12:09 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 89631
- Location:
- trunk/include/iprt
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
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.