Changeset 9459 in vbox for trunk/include
- Timestamp:
- Jun 6, 2008 9:47:38 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/shflsvc.h
r9146 r9459 930 930 /** 931 931 * SHFL_FN_ADD_MAPPING 932 */ 933 934 /** Parameters structure. */ 935 typedef struct _VBoxSFAddMapping 936 { 937 VBoxGuestHGCMCallInfo callInfo; 938 939 /** pointer, in: Folder name 940 * Points to SHFLSTRING buffer. 941 */ 942 HGCMFunctionParameter folder; 943 944 /** pointer, in: Mapping name 945 * Points to SHFLSTRING buffer. 946 */ 947 HGCMFunctionParameter mapping; 948 949 /** bool, in: Writable 950 * True (default) if the folder is writable. 951 */ 952 HGCMFunctionParameter writable; 953 954 } VBoxSFAddMapping; 932 * Host call, no guest structure is used. 933 */ 955 934 956 935 #define SHFL_CPARMS_ADD_MAPPING (3) 957 936 958 959 937 /** 960 938 * SHFL_FN_REMOVE_MAPPING 961 */ 962 963 /** Parameters structure. */ 964 typedef struct _VBoxSFRemoveMapping 965 { 966 VBoxGuestHGCMCallInfo callInfo; 967 968 /** pointer, in: Guest name 969 * Points to SHFLSTRING buffer. 970 */ 971 HGCMFunctionParameter path; 972 973 } VBoxSFRemoveMapping; 939 * Host call, no guest structure is used. 940 */ 974 941 975 942 #define SHFL_CPARMS_REMOVE_MAPPING (1) … … 978 945 /** 979 946 * SHFL_FN_SET_STATUS_LED 980 */ 981 982 /** Parameters structure. */ 983 typedef struct _VBoxSFSetStatusLed 984 { 985 VBoxGuestHGCMCallInfo callInfo; 986 987 /** pointer, in: LED address 988 * Points to PPDMLED buffer. 989 */ 990 HGCMFunctionParameter led; 991 992 } VBoxSFSetStatusLed; 947 * Host call, no guest structure is used. 948 */ 993 949 994 950 #define SHFL_CPARMS_SET_STATUS_LED (1)
Note:
See TracChangeset
for help on using the changeset viewer.