| 982 | //----------------------------------------------------------------------------- |
| 983 | |
| 984 | static void readLongCString( BitStream* stream, char* buffer ) |
| 985 | { |
| 986 | U32 i; |
| 987 | U16 strLen; |
| 988 | stream->read( &strLen ); |
| 989 | for ( i = 0; i < strLen; i++ ) |
| 990 | { |
| 991 | U8* ptr = (U8*) buffer; |
| 992 | stream->read( &ptr[i] ); |
| 993 | } |
| 994 | buffer[i] = 0; |
| 995 | } |
| 996 | |
| 997 | //----------------------------------------------------------------------------- |
| 998 | // Event processing |
no test coverage detected