Changeset 8569 in vbox for trunk/src/VBox/Main/linux
- Timestamp:
- May 5, 2008 12:32:51 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 30484
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/linux/server_module.cpp
r8155 r8569 78 78 }; 79 79 80 /** 80 /** 81 81 * Full path to the VBoxSVC executable. 82 82 */ … … 93 93 NS_IMPL_CI_INTERFACE_GETTER1 (VirtualBox, IVirtualBox) 94 94 95 /** 95 /** 96 96 * VirtualBox component constructor. 97 97 * … … 135 135 136 136 LogFlowFunc (("component directory = \"%s\"\n", path.get())); 137 AssertBreak (path.Length() + strlen (VBoxSVC_exe) < RTPATH_MAX,138 rc = NS_ERROR_FAILURE);137 AssertBreakStmt (path.Length() + strlen (VBoxSVC_exe) < RTPATH_MAX, 138 rc = NS_ERROR_FAILURE); 139 139 140 140 strcpy (VBoxSVCPath, path.get()); … … 255 255 #if 0 256 256 /// @todo not really necessary for the moment 257 /** 258 * 259 * @param aCompMgr 260 * @param aPath 261 * @param aLoaderStr 262 * @param aType 263 * @param aInfo 264 * 265 * @return 257 /** 258 * 259 * @param aCompMgr 260 * @param aPath 261 * @param aLoaderStr 262 * @param aType 263 * @param aInfo 264 * 265 * @return 266 266 */ 267 267 static NS_IMETHODIMP … … 286 286 #endif 287 287 288 /** 288 /** 289 289 * Component definition table. 290 290 * Lists all components defined in this module. … … 299 299 NULL, // deregistration function 300 300 NULL, // destructor function 301 /// @todo 301 /// @todo 302 302 NS_CI_INTERFACE_GETTER_NAME(VirtualBox), // interfaces function 303 303 NULL, // language helper 304 /// @todo 304 /// @todo 305 305 &NS_CLASSINFO_NAME(VirtualBox) // global class info & flags 306 306 }
Note:
See TracChangeset
for help on using the changeset viewer.