| 225 | |
| 226 | |
| 227 | int |
| 228 | readExtaDataHeader ( |
| 229 | HfInfo * file, |
| 230 | unsigned int* dtype, |
| 231 | unsigned int* flags, |
| 232 | unsigned int* numParam) |
| 233 | { |
| 234 | int status = 0; |
| 235 | |
| 236 | status += hfRead(file, dtype, 1, sizeof(unsigned int)); |
| 237 | status += hfRead(file, flags, 1, sizeof(unsigned int)); |
| 238 | |
| 239 | status += hfRead(file, numParam, 1, sizeof(unsigned int)); |
| 240 | status += hfCheckCRC(file); |
| 241 | |
| 242 | return status; |
| 243 | } |
| 244 | |
| 245 | bool |
| 246 | readPatternData( |
no test coverage detected