Changeset 35967 in vbox for trunk/include/VBox
- Timestamp:
- Feb 15, 2011 9:37:16 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/VMMDev.h
r35908 r35967 679 679 VBoxGuestFacilityType_VBoxTrayClient = 101, /* VBoxTray (Windows), VBoxClient (Linux, Unix). */ 680 680 VBoxGuestFacilityType_Seamless = 1000, 681 VBoxGuestFacilityType_Graphics = 1 001,681 VBoxGuestFacilityType_Graphics = 1100, 682 682 VBoxGuestFacilityType_All = 0x7ffffffe, 683 683 VBoxGuestFacilityType_SizeHack = 0x7fffffff … … 704 704 } VBoxGuestFacilityStatus; 705 705 AssertCompileSize(VBoxGuestFacilityStatus, 4); 706 707 708 /** 709 * The facility class. 710 * This needs to be kept in sync with AdditionsFacilityClass of the Main API! 711 */ 712 typedef enum 713 { 714 VBoxGuestFacilityClass_None = 0, 715 VBoxGuestFacilityClass_Driver = 10, 716 VBoxGuestFacilityClass_Service = 30, 717 VBoxGuestFacilityClass_Program = 50, 718 VBoxGuestFacilityClass_Feature = 100, 719 VBoxGuestFacilityClass_ThirdParty = 999, 720 VBoxGuestFacilityClass_SizeHack = 0x7fffffff 721 } VBoxGuestFacilityClass; 722 AssertCompileSize(VBoxGuestFacilityClass, 4); 723 706 724 707 725 /**
Note:
See TracChangeset
for help on using the changeset viewer.