| 1129 | //----------------------------------------------------------------------------- |
| 1130 | |
| 1131 | static void readLongCString( BitStream* stream, char* buffer ) |
| 1132 | { |
| 1133 | U32 i; |
| 1134 | U16 strLen; |
| 1135 | stream->read( &strLen ); |
| 1136 | for ( i = 0; i < strLen; i++ ) |
| 1137 | { |
| 1138 | U8* ptr = (U8*) buffer; |
| 1139 | stream->read( &ptr[i] ); |
| 1140 | } |
| 1141 | buffer[i] = 0; |
| 1142 | } |
| 1143 | |
| 1144 | //----------------------------------------------------------------------------- |
| 1145 | // Event processing |
no test coverage detected