| 123 | } |
| 124 | |
| 125 | void putString(const Firebird::string& str) |
| 126 | { |
| 127 | const auto length = str.length(); |
| 128 | putInt32(length); |
| 129 | const auto ptr = (const UCHAR*) str.c_str(); |
| 130 | buffer->add(ptr, length); |
| 131 | } |
| 132 | |
| 133 | void putBinary(ULONG length, const UCHAR* data) |
| 134 | { |
no test coverage detected