diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2019-09-23 18:33:04 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2019-09-23 20:01:32 +0200 |
commit | 4566f95fd9f70530866457beb545a794cc80e1d0 (patch) | |
tree | 9ded8c8613ea1c9c7db3b981ab0b3c8c7e4aa439 /Include | |
parent | 5135d1a3579104b4c69994135c424c5a524c11f9 (diff) | |
download | VeraCrypt-DCS-4566f95fd9f70530866457beb545a794cc80e1d0.tar.gz VeraCrypt-DCS-4566f95fd9f70530866457beb545a794cc80e1d0.zip |
make the rescue disk boot machine directly from disk if "VeraCrypt" folder is missing. This make it easy to create a bootable disk for VeraCrypt from the rescue disk by just removing or renaming its "VeraCrypt" folder.VeraCrypt_1.24
Diffstat (limited to 'Include')
-rw-r--r-- | Include/Library/CommonLib.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Include/Library/CommonLib.h b/Include/Library/CommonLib.h index 4d207ca..0bfb631 100644 --- a/Include/Library/CommonLib.h +++ b/Include/Library/CommonLib.h @@ -663,6 +663,12 @@ DirectoryCreate( IN EFI_FILE* root,
IN CHAR16* name
);
+
+EFI_STATUS
+DirectoryExists(
+ IN EFI_FILE* root,
+ IN CHAR16* name
+ );
EFI_STATUS
FileOpenRoot(
|