file name manipulation
| 1507 | // file name manipulation |
| 1508 | // |
| 1509 | BOOLEAN |
| 1510 | MetaiMatch ( |
| 1511 | IN CONST CHAR16 *String, |
| 1512 | IN CONST CHAR16 *Pattern |
| 1513 | ) |
| 1514 | { |
| 1515 | if (!mUnicodeCollation) { |
| 1516 | // quick fix for driver loading on UEFIs without UnicodeCollation |
| 1517 | //return FALSE; |
| 1518 | return TRUE; //this is wrong anyway |
| 1519 | } |
| 1520 | return mUnicodeCollation->MetaiMatch (mUnicodeCollation, String, Pattern); |
| 1521 | } |
| 1522 | |
| 1523 | |
| 1524 | EFI_STATUS |