| 215 | |
| 216 | |
| 217 | ULONG DataTypeUtilBase::convertLength(ULONG len, USHORT srcCharSet, USHORT dstCharSet) |
| 218 | { |
| 219 | if (dstCharSet == CS_NONE || dstCharSet == CS_BINARY) |
| 220 | return len; |
| 221 | |
| 222 | return (len / maxBytesPerChar(srcCharSet)) * maxBytesPerChar(dstCharSet); |
| 223 | } |
| 224 | |
| 225 | |
| 226 | ULONG DataTypeUtilBase::convertLength(const dsc* src, const dsc* dst) |
no test coverage detected