Changeset 7207 in vbox for trunk/src/VBox/Frontends/VBoxBFE/HostUSBDeviceImpl.h
- Timestamp:
- Feb 28, 2008 6:43:08 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 28520
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxBFE/HostUSBDeviceImpl.h
r5999 r7207 42 42 /** Not supported by the VirtualBox server, not available to 43 43 guests. */ 44 USBDeviceState_ USBDeviceNotSupported,44 USBDeviceState_NotSupported, 45 45 /** Being used by the host computer exclusively, not available 46 46 to guests. */ 47 USBDeviceState_U SBDeviceUnavailable,47 USBDeviceState_Unavailable, 48 48 /** Being used by the host computer, potentially available to 49 49 guests. */ 50 USBDeviceState_ USBDeviceBusy,50 USBDeviceState_Busy, 51 51 /** Not used by the host computer, available to guests. The 52 52 host computer can also start using the device at any time. */ 53 USBDeviceState_ USBDeviceAvailable,53 USBDeviceState_Available, 54 54 /** Held by the VirtualBox server (ignored by the host computer), 55 55 available to guests. */ 56 USBDeviceState_ USBDeviceHeld,56 USBDeviceState_Held, 57 57 /** Captured by one of the guest computers, not available to 58 58 anybody else. */ 59 USBDeviceState_ USBDeviceCaptured59 USBDeviceState_Captured 60 60 } USBDeviceState_T; 61 61 … … 97 97 void setCaptured (); 98 98 bool isCaptured() 99 { return mState == USBDeviceState_ USBDeviceCaptured; }99 { return mState == USBDeviceState_Captured; } 100 100 int setHostDriven(); 101 101 int reset();
Note:
See TracChangeset
for help on using the changeset viewer.