Changeset 38636 in vbox for trunk/src/VBox/HostDrivers/VBoxUSB
- Timestamp:
- Sep 5, 2011 1:49:45 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 73843
- Location:
- trunk/src/VBox/HostDrivers/VBoxUSB
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/VBoxUSB/darwin/testcase/tstOpenUSBDev.cpp
r31898 r38636 168 168 int main(int argc, char **argv) 169 169 { 170 RTR3Init ();170 RTR3InitExe(argc, &argv, 0); 171 171 172 172 /* -
trunk/src/VBox/HostDrivers/VBoxUSB/testcase/tstUSBFilter.cpp
r31898 r38636 78 78 { 79 79 unsigned cErrors = 0; 80 RTR3Init ();80 RTR3InitExeNoArguments(0); 81 81 82 82 /* -
trunk/src/VBox/HostDrivers/VBoxUSB/win/Install/USBInstall.cpp
r36941 r38636 59 59 int __cdecl main(int argc, char **argv) 60 60 { 61 if (RTR3Init () != VINF_SUCCESS)61 if (RTR3InitExe(argc, &argv, 0) != VINF_SUCCESS) 62 62 { 63 63 printf("Could not init IPRT!\n");
Note:
See TracChangeset
for help on using the changeset viewer.