Changeset 35887 in vbox for trunk/include
- Timestamp:
- Feb 8, 2011 8:36:00 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/VMMDev.h
r34754 r35887 4 4 5 5 /* 6 * Copyright (C) 2006-20 07Oracle Corporation6 * Copyright (C) 2006-2011 Oracle Corporation 7 7 * 8 8 * This file is part of VirtualBox Open Source Edition (OSE), as … … 670 670 /** 671 671 * Guest status facility. 672 * This needs to be kept in sync with AdditionsFacility of the Main API! 672 673 */ 673 674 typedef enum … … 676 677 VBoxGuestStatusFacility_VBoxGuestDriver = 20, 677 678 VBoxGuestStatusFacility_VBoxService = 100, 678 VBoxGuestStatusFacility_VBoxTray = 101,679 VBoxGuestStatusFacility_VBoxTrayClient = 101, /* VBoxTray (Windows), VBoxClient (Linux, Unix). */ 679 680 VBoxGuestStatusFacility_All = 999, 680 681 VBoxGuestStatusFacility_SizeHack = 0x7fffffff … … 682 683 AssertCompileSize(VBoxGuestStatusFacility, 4); 683 684 685 684 686 /** 685 687 * The current guest status of a facility. … … 689 691 VBoxGuestStatusCurrent_Disabled = 0, 690 692 VBoxGuestStatusCurrent_Inactive = 1, 693 VBoxGuestStatusCurrent_Paused = 2, 691 694 VBoxGuestStatusCurrent_PreInit = 20, 692 695 VBoxGuestStatusCurrent_Init = 30, … … 694 697 VBoxGuestStatusCurrent_Terminating = 100, 695 698 VBoxGuestStatusCurrent_Terminated = 101, 699 VBoxGuestStatusCurrent_Unknown = 999, 696 700 VBoxGuestStatusCurrent_SizeHack = 0x7fffffff 697 701 } VBoxGuestStatusCurrent;
Note:
See TracChangeset
for help on using the changeset viewer.