Changeset 75737 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Nov 26, 2018 3:44:41 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 126937
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/GuestDnDPrivate.h
r74714 r75737 887 887 } 888 888 889 pParm->setPointer(pvTmp, cbBuf);889 HGCMSvcSetPv(pParm, pvTmp, cbBuf); 890 890 return VINF_SUCCESS; 891 891 } … … 901 901 return VERR_NO_MEMORY; 902 902 903 pParm->setString(pszTemp);903 HGCMSvcSetStr(pParm, pszTemp); 904 904 return VINF_SUCCESS; 905 905 } … … 911 911 return VERR_NO_MEMORY; 912 912 913 pParm->setUInt32(u32Val);913 HGCMSvcSetU32(pParm, u32Val); 914 914 return VINF_SUCCESS; 915 915 } … … 921 921 return VERR_NO_MEMORY; 922 922 923 pParm->setUInt64(u64Val);923 HGCMSvcSetU64(pParm, u64Val); 924 924 return VINF_SUCCESS; 925 925 }
Note:
See TracChangeset
for help on using the changeset viewer.