| 3240 | } |
| 3241 | |
| 3242 | BOOL Ext2ProcessExt2Volumes() |
| 3243 | { |
| 3244 | PEXT2_VOLUME volume = gVols; |
| 3245 | BOOL rc = FALSE; |
| 3246 | |
| 3247 | while (volume) { |
| 3248 | if (Ext2ProcessExt2Property(volume)) { |
| 3249 | rc = TRUE; |
| 3250 | } |
| 3251 | volume = volume->Next; |
| 3252 | } |
| 3253 | return rc; |
| 3254 | } |
| 3255 | |
| 3256 | BOOL |
| 3257 | Ext2IsPartitionExtent( |
no test coverage detected