Changeset 55587 in vbox for trunk/include/VBox
- Timestamp:
- May 1, 2015 7:24:03 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/hgcmsvc.h
r55526 r55587 248 248 u.pointer.size = (uint32_t)strlen(psz) + 1; 249 249 } 250 251 #ifdef ___iprt_cpp_ministring_h 252 /** Set a const string value to an HGCM parameter structure */ 253 void setCppString(const RTCString &rString) 254 { 255 type = VBOX_HGCM_SVC_PARM_PTR; 256 u.pointer.addr = (void *)rString.c_str(); 257 u.pointer.size = (uint32_t)rString.length() + 1; 258 } 259 #endif 250 260 251 261 #ifdef VBOX_TEST_HGCM_PARMS
Note:
See TracChangeset
for help on using the changeset viewer.