Changeset 25647 in vbox for trunk/include/VBox
- Timestamp:
- Jan 5, 2010 9:59:19 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 56357
- Location:
- trunk/include/VBox
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/HostServices/GuestPropertySvc.h
r25306 r25647 417 417 /** 418 418 * Array of patterns to match the properties against, separated by '|' 419 * characters. For backwards compatibility, '\ 0' is also accepted419 * characters. For backwards compatibility, '\\0' is also accepted 420 420 * as a separater. 421 421 * (IN pointer) -
trunk/include/VBox/VBoxHDD-Plugin.h
r23266 r25647 548 548 /** The prefix to identify Storage Plugins. */ 549 549 #define VBOX_HDDFORMAT_PLUGIN_PREFIX "VBoxHDD" 550 /** The size of the prefix excluding the '\ 0' terminator. */550 /** The size of the prefix excluding the '\\0' terminator. */ 551 551 #define VBOX_HDDFORMAT_PLUGIN_PREFIX_LENGTH (sizeof(VBOX_HDDFORMAT_PLUGIN_PREFIX)-1) 552 552 -
trunk/include/VBox/VBoxHDD.h
r22983 r25647 135 135 typedef struct VBOXHDDRAW 136 136 { 137 /** Signature for structure. Must be 'R', 'A', 'W', '\ 0'. Actually a trick137 /** Signature for structure. Must be 'R', 'A', 'W', '\\0'. Actually a trick 138 138 * to make logging of the comment string produce sensible results. */ 139 139 char szSignature[4]; … … 142 142 bool fRawDisk; 143 143 /** Filename for the raw disk. Ignored for partitioned raw disks. 144 * For Linux e.g. /dev/sda, and for Windows e.g. \\ .\PhysicalDisk0. */144 * For Linux e.g. /dev/sda, and for Windows e.g. \\\\.\\PhysicalDisk0. */ 145 145 const char *pszRawDisk; 146 146 /** Number of entries in the partitions array. */ -
trunk/include/VBox/cdefs.h
r25642 r25647 60 60 #define VBOX_WITH_STATISTICS 61 61 #define VBOX_STRICT 62 #define IN_DBG 62 63 #define IN_DIS 63 64 #define IN_INTNET_R0 … … 67 68 #define IN_SUP_R3 68 69 #define IN_SUP_GC 70 #define IN_SUP_STATIC 69 71 #define IN_USBLIB 70 72 #define IN_VBOXDDU … … 72 74 #define IN_VMM_R0 73 75 #define IN_VMM_R3 74 /** @todo fixme */ 76 #define IN_VMM_STATIC 75 77 #endif 76 78 -
trunk/include/VBox/com/ErrorInfo.h
r20267 r25647 358 358 * otherwise. 359 359 * 360 * @param aIsNull @ true to prevent fetching error info and leave360 * @param aIsNull @c true to prevent fetching error info and leave 361 361 * the instance uninitialized. 362 362 */ -
trunk/include/VBox/dbg.h
r22108 r25647 352 352 * @param pCmdHlp Pointer to the command callback structure. 353 353 * @param rc The VBox status code. 354 * @param pcb Where to store the number of bytes written.355 354 * @param pszFormat Format string for additional messages. Can be NULL. 356 355 * @param ... Format arguments, optional. -
trunk/include/VBox/dbgfsel.h
r21217 r25647 35 35 #include <VBox/x86.h> 36 36 37 /** @add group grp_dbgf37 /** @addtogroup grp_dbgf 38 38 * @{ */ 39 39 … … 87 87 88 88 89 /** @def DBGFSELINFO_IS_EXPAND_DOWN89 /** 90 90 * Tests whether the selector info describes an expand-down selector or now. 91 91 * -
trunk/include/VBox/pdmdrv.h
r24744 r25647 941 941 942 942 /** 943 * @copydoc PDMDRVHLP::pfn GetVirtualFreq943 * @copydoc PDMDRVHLP::pfnTMGetVirtualFreq 944 944 */ 945 945 DECLINLINE(uint64_t) PDMDrvHlpTMGetVirtualFreq(PPDMDRVINS pDrvIns) -
trunk/include/VBox/pgm.h
r24723 r25647 465 465 VMMR3DECL(int) PGMR3PhysMMIO2MapKernel(PVM pVM, PPDMDEVINS pDevIns, uint32_t iRegion, RTGCPHYS off, RTGCPHYS cb, const char *pszDesc, PRTR0PTR pR0Ptr); 466 466 467 /** @ groupPGMR3PhysRegisterRom flags.467 /** @name PGMR3PhysRegisterRom flags. 468 468 * @{ */ 469 469 /** Inidicates that ROM shadowing should be enabled. */
Note:
See TracChangeset
for help on using the changeset viewer.