| 7744 | } |
| 7745 | |
| 7746 | PUGI_IMPL_FN xml_parse_result xml_document::load_buffer(const void* contents, size_t size, unsigned int options, xml_encoding encoding) |
| 7747 | { |
| 7748 | reset(); |
| 7749 | |
| 7750 | return impl::load_buffer_impl(static_cast<impl::xml_document_struct*>(_root), _root, const_cast<void*>(contents), size, options, encoding, false, false, &_buffer); |
| 7751 | } |
| 7752 | |
| 7753 | PUGI_IMPL_FN xml_parse_result xml_document::load_buffer_inplace(void* contents, size_t size, unsigned int options, xml_encoding encoding) |
| 7754 | { |