VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src/Mount/Favorites.h
AgeCommit message (Expand)AuthorFilesLines
2017-06-23Update IDRIX copyright yearMounir IDRASSI1-1/+1
2016-12-08Windows: Enhancement to favorites handling. Add PRF/TrueCryptMode fields in f...Mounir IDRASSI1-0/+4
2016-05-10Remove trailing whitespaceDavid Foerster1-2/+2
2016-05-10Normalize all line terminatorsDavid Foerster1-87/+87
2016-04-14Windows: Finalize implementation of the new volume ID mechanism. Use SHA-256 ...Mounir IDRASSI1-2/+2
2016-04-08Windows: start implementation of volume ID mechanism that will be used to ide...Mounir IDRASSI1-1/+5
2016-01-20Copyright: update dates to include 2016.Mounir IDRASSI1-1/+1
2015-11-26Windows: Full UNICODE rewrite and implement support for UNICODE passwords.Mounir IDRASSI1-4/+4
2015-08-31Windows: Support setting volume label in Explorer through mount option. Suppo...Mounir IDRASSI1-2/+4
2015-08-06Update license information to reflect the use of a dual license Apache 2.0 an...Mounir IDRASSI1-4/+8
2015-07-11Use Pim name for internal variables instead of the old name PinMounir IDRASSI1-2/+2
2015-06-19Windows: If PIM of a volume is changed and if it is a favorite or system favo...Mounir IDRASSI1-1/+2
2015-06-07Windows: Add support for PIN in favorites. Several enhancements to GUI handli...Mounir IDRASSI1-0/+2
2014-12-27Windows: use the correct window handle for creating message boxes. This becam...Mounir IDRASSI1-1/+1
2014-11-08Change namespace from TrueCrypt to VeraCrypt. Rename method from Resources Re...Mounir IDRASSI1-1/+1
2014-11-08Add original TrueCrypt 7.1a sourcesMounir IDRASSI1-0/+74
*/ #ifdef __cplusplus extern "C" { #endif BOOL ReadLocalMachineRegistryDword (char *subKey, char *name, DWORD *value); BOOL ReadLocalMachineRegistryMultiString (char *subKey, char *name, char *value, DWORD *size); BOOL ReadLocalMachineRegistryString (const char *subKey, char *name, char *value, DWORD *size); BOOL ReadLocalMachineRegistryStringNonReflected (const char *subKey, char *name, char *str, DWORD *size, BOOL b32bitApp); int ReadRegistryInt (char *subKey, char *name, int defaultValue); char *ReadRegistryString (char *subKey, char *name, char *defaultValue, char *str, int maxLen); DWORD ReadRegistryBytes (char *path, char *name, char *value, int maxLen); void WriteRegistryInt (char *subKey, char *name, int value); BOOL WriteLocalMachineRegistryDword (char *subKey, char *name, DWORD value); BOOL WriteLocalMachineRegistryDwordW (WCHAR *subKey, WCHAR *name, DWORD value); BOOL WriteLocalMachineRegistryMultiString (char *subKey, char *name, char *multiString, DWORD size); BOOL WriteLocalMachineRegistryString (char *subKey, char *name, char *str, BOOL expandable); void WriteRegistryString (char *subKey, char *name, char *str); BOOL WriteRegistryBytes (char *path, char *name, char *str, DWORD size); BOOL DeleteLocalMachineRegistryKey (char *parentKey, char *subKeyToDelete); void DeleteRegistryValue (char *subKey, char *name); void GetStartupRegKeyName (char *regk, size_t cbRegk); #ifdef __cplusplus } #endif