diff options
Diffstat (limited to 'src/Mount/Mount.h')
-rw-r--r-- | src/Mount/Mount.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/Mount/Mount.h b/src/Mount/Mount.h index e982de81..9b320a8c 100644 --- a/src/Mount/Mount.h +++ b/src/Mount/Mount.h @@ -113,8 +113,17 @@ static BOOL HandleDriveListMouseWheelEvent (UINT uMsg, WPARAM wParam, LPARAM lPa #ifdef __cplusplus
}
+typedef struct
+{
+ BOOL systemFavorites;
+ BOOL logOnMount;
+ BOOL hotKeyMount;
+ VeraCrypt::FavoriteVolume* favoriteVolumeToMount;
+} mountFavoriteVolumeThreadParam;
+
void SetDriverConfigurationFlag (uint32 flag, BOOL state);
BOOL MountFavoriteVolumes (BOOL systemFavorites = FALSE, BOOL logOnMount = FALSE, BOOL hotKeyMount = FALSE, const VeraCrypt::FavoriteVolume &favoriteVolumeToMount = VeraCrypt::FavoriteVolume());
+void __cdecl mountFavoriteVolumeThreadFunction (void *pArg);
BOOL GetExecutableImageInformation (const string &path, string &version, string &description, string &companyName, string &productName);
#endif
|