Changeset 29522 in vbox for trunk/src/VBox/Devices/Builtins2.cpp
- Timestamp:
- May 17, 2010 10:15:48 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 61662
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Builtins2.cpp
r29332 r29522 1 1 /* $Id $ */ 2 2 /** @file 3 * Built-in drivers & devices (part 2).3 * Built-in drivers & devices part 2. 4 4 */ 5 5 6 6 /* 7 * Copyright (C) 2006-20 07Oracle Corporation7 * Copyright (C) 2006-2010 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 61 61 if (RT_FAILURE(rc)) 62 62 return rc; 63 #ifdef VBOX_WITH_SMC 64 rc = pCallbacks->pfnRegister(pCallbacks, &g_DeviceSMC); 65 if (RT_FAILURE(rc)) 66 return rc; 67 #endif 68 #ifdef VBOX_WITH_LPC 69 rc = pCallbacks->pfnRegister(pCallbacks, &g_DeviceLPC); 70 if (RT_FAILURE(rc)) 71 return rc; 72 #endif 63 73 64 74 return VINF_SUCCESS;
Note:
See TracChangeset
for help on using the changeset viewer.