Changeset 45076 in vbox for trunk/include/VBox/HostServices
- Timestamp:
- Mar 18, 2013 8:07:37 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 84358
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/HostServices/GuestControlSvc.h
r45011 r45076 899 899 */ 900 900 901 typedef struct CALLBACKPAYLOAD_FILE_NOT FIY_OPEN901 typedef struct CALLBACKPAYLOAD_FILE_NOTIFY_OPEN 902 902 { 903 903 /** IPRT result of overall operation. */ … … 905 905 /** File handle on successful opening. */ 906 906 uint32_t uHandle; 907 } CALLBACKPAYLOAD_FILE_NOT FIY_OPEN, *PCALLBACKPAYLOAD_FILE_NOTFIY_OPEN;908 909 typedef struct CALLBACKPAYLOAD_FILE_NOT FIY_CLOSE907 } CALLBACKPAYLOAD_FILE_NOTIFY_OPEN, *PCALLBACKPAYLOAD_FILE_NOTIFY_OPEN; 908 909 typedef struct CALLBACKPAYLOAD_FILE_NOTIFY_CLOSE 910 910 { 911 911 /** IPRT result of overall operation. */ 912 912 int32_t rc; 913 } CALLBACKPAYLOAD_FILE_NOT FIY_CLOSE, *PCALLBACKPAYLOAD_FILE_NOTFIY_CLOSE;914 915 typedef struct CALLBACKPAYLOAD_FILE_NOT FIY_READ913 } CALLBACKPAYLOAD_FILE_NOTIFY_CLOSE, *PCALLBACKPAYLOAD_FILE_NOTIFY_CLOSE; 914 915 typedef struct CALLBACKPAYLOAD_FILE_NOTIFY_READ 916 916 { 917 917 /** IPRT result of overall operation. */ … … 921 921 /** Actual data read (if any). */ 922 922 void *pvData; 923 } CALLBACKPAYLOAD_FILE_NOT FIY_READ, *PCALLBACKPAYLOAD_FILE_NOTFIY_READ;924 925 typedef struct CALLBACKPAYLOAD_FILE_NOT FIY_WRITE923 } CALLBACKPAYLOAD_FILE_NOTIFY_READ, *PCALLBACKPAYLOAD_FILE_NOTIFY_READ; 924 925 typedef struct CALLBACKPAYLOAD_FILE_NOTIFY_WRITE 926 926 { 927 927 /** IPRT result of overall operation. */ … … 929 929 /** How much data (in bytes) have been successfully written. */ 930 930 uint32_t cbWritten; 931 } CALLBACKPAYLOAD_FILE_NOT FIY_WRITE, *PCALLBACKPAYLOAD_FILE_NOTFIY_WRITE;931 } CALLBACKPAYLOAD_FILE_NOTIFY_WRITE, *PCALLBACKPAYLOAD_FILE_NOTIFY_WRITE; 932 932 933 933 typedef struct CALLBACKPAYLOAD_FILE_NOTFIY_SEEK … … 937 937 /** New file offset after successful seek. */ 938 938 uint64_t uOffActual; 939 } CALLBACKPAYLOAD_FILE_NOTFIY_SEEK, *PCALLBACKPAYLOAD_FILE_NOT FIY_SEEK;939 } CALLBACKPAYLOAD_FILE_NOTFIY_SEEK, *PCALLBACKPAYLOAD_FILE_NOTIFY_SEEK; 940 940 941 941 typedef struct CALLBACKPAYLOAD_FILE_NOTFIY_TELL … … 945 945 /** Current file offset after successful tell. */ 946 946 uint64_t uOffActual; 947 } CALLBACKPAYLOAD_FILE_NOTFIY_TELL, *PCALLBACKPAYLOAD_FILE_NOT FIY_TELL;947 } CALLBACKPAYLOAD_FILE_NOTFIY_TELL, *PCALLBACKPAYLOAD_FILE_NOTIFY_TELL; 948 948 949 949 } /* namespace guestControl */
Note:
See TracChangeset
for help on using the changeset viewer.