| 238 | }; |
| 239 | |
| 240 | char *PartitionString(int type) |
| 241 | { |
| 242 | PARTITION_LIST *p = PartitionList; |
| 243 | |
| 244 | while ( p->PartitionType != -1 ) { |
| 245 | if ( type == p->PartitionType ) { |
| 246 | return p->type; |
| 247 | } |
| 248 | p++; |
| 249 | } |
| 250 | return p->type; |
| 251 | } |
| 252 | |
| 253 | char *DriveTypeString(UINT media) |
| 254 | { |
no outgoing calls
no test coverage detected