Changeset 5102 in vbox
- Timestamp:
- Sep 28, 2007 4:16:24 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/VBoxHDD-newInternal.h
r4522 r5102 30 30 */ 31 31 uint32_t cbSize; 32 33 /** 34 * Check if an file is valid for the backend. 35 * 36 * @returns VBox status code. 37 * @param pszFilename Name of the image file to open. Guaranteed to be available and 38 * unchanged during the lifetime of this image. 39 */ 40 DECLR3CALLBACKMEMBER(int, pfnCheckIfValid, (const char *pszFilename)); 32 41 33 42 /** … … 286 295 #define VBOX_HDDFORMAT_LOAD_NAME "VBoxHDDFormatLoad" 287 296 297 /** The prefix to identify Storage Plugins. */ 298 #define VBOX_HDDFORMAT_PLUGIN_PREFIX "VBoxHDD" 299 /** The size of the prefix excluding the '\0' terminator. */ 300 #define VBOX_HDDFORMAT_PLUGIN_PREFIX_LENGTH (sizeof(VBOX_HDDFORMAT_PLUGIN_PREFIX)-1) 301 288 302 #endif
Note:
See TracChangeset
for help on using the changeset viewer.