============================================================================= PrepareFilterStr()
| 1261 | // PrepareFilterStr() |
| 1262 | // |
| 1263 | void PrepareFilterStr ( LPWSTR lpFilter ) |
| 1264 | { |
| 1265 | LPWSTR psz = StrEnd ( lpFilter ); |
| 1266 | while ( psz != lpFilter ) { |
| 1267 | if ( * ( psz = CharPrev ( lpFilter, psz ) ) == L'|' ) { |
| 1268 | *psz = L'\0'; |
| 1269 | } |
| 1270 | } |
| 1271 | } |
| 1272 | |
| 1273 | |
| 1274 | //============================================================================= |
no outgoing calls
no test coverage detected