]> code.delx.au - refind/blobdiff - EfiLib/BmLib.c
Changes to ext4fs driver to support 64-bit pointers.
[refind] / EfiLib / BmLib.c
index 4feddd50337fbc33e4275797b93461a6f137b27f..99598b860d3a4288bb51ba452f717791998f38d8 100644 (file)
@@ -17,7 +17,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
 #else\r
 #include "gnuefi-helper.h"\r
 #endif\r
-#include "refit_call_wrapper.h"\r
+#include "../include/refit_call_wrapper.h"\r
 \r
 /**\r
 \r
@@ -119,22 +119,6 @@ EfiStrDuplicate (
   return Dest;\r
 }\r
 \r
-//Compare strings case insensitive\r
-INTN\r
-EFIAPI\r
-StriCmp (\r
-               IN      CONST CHAR16              *FirstString,\r
-               IN      CONST CHAR16              *SecondString\r
-               )\r
-{\r
-       \r
-       while ((*FirstString != L'\0') && ((*FirstString & ~0x20) == (*SecondString & ~0x20))) {\r
-               FirstString++;\r
-               SecondString++;\r
-       }\r
-       return *FirstString - *SecondString;\r
-}\r
-\r
 /**\r
 \r
   Function gets the file information from an open file descriptor, and stores it\r