Changeset 52546 in vbox for trunk/include/VBox/com
- Timestamp:
- Sep 1, 2014 8:58:51 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/com/string.h
r52312 r52546 514 514 } 515 515 516 Utf8Str(CBSTR that )517 { 518 copyFrom(that );516 Utf8Str(CBSTR that, size_t a_cchSize = RTSTR_MAX) 517 { 518 copyFrom(that, a_cchSize); 519 519 } 520 520 … … 718 718 protected: 719 719 720 void copyFrom(CBSTR a_pbstr );720 void copyFrom(CBSTR a_pbstr, size_t a_cchSize = RTSTR_MAX); 721 721 HRESULT copyFromEx(CBSTR a_pbstr); 722 722 HRESULT copyFromExNComRC(const char *a_pcszSrc, size_t a_offSrc, size_t a_cchSrc);
Note:
See TracChangeset
for help on using the changeset viewer.