diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2015-11-25 01:41:37 +0100 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2015-11-26 01:44:52 +0100 |
commit | 90bd57fe40e66fc829ecb01482d32d604b0df19c (patch) | |
tree | 6d6de0d9a31c82d0598f68c2d160cb9e565bd5ea /src/ExpandVolume/ExpandVolume.h | |
parent | ec7d96fcb733021c214b414a1ba2841039733dd2 (diff) | |
download | VeraCrypt-90bd57fe40e66fc829ecb01482d32d604b0df19c.tar.gz VeraCrypt-90bd57fe40e66fc829ecb01482d32d604b0df19c.zip |
Windows: Full UNICODE rewrite and implement support for UNICODE passwords.
Diffstat (limited to 'src/ExpandVolume/ExpandVolume.h')
-rw-r--r-- | src/ExpandVolume/ExpandVolume.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/ExpandVolume/ExpandVolume.h b/src/ExpandVolume/ExpandVolume.h index 3dc213f1..6f3e9629 100644 --- a/src/ExpandVolume/ExpandVolume.h +++ b/src/ExpandVolume/ExpandVolume.h @@ -27,14 +27,14 @@ enum EV_FileSystem EV_FS_TYPE_NTFS = 2, }; -extern const char * szFileSystemStr[3]; +extern const wchar_t * szFileSystemStr[3]; typedef struct { uint64 oldSize; uint64 newSize; uint64 hostSizeFree; - const char *szVolumeName; + const wchar_t *szVolumeName; enum EV_FileSystem FileSystem; BOOL bIsDevice; BOOL bIsLegacy; @@ -56,10 +56,10 @@ extern volatile BOOL bVolTransformThreadCancel; /* TRUE if the user cancels/paus /* defined in ExpandVolume.c */ uint64 GetVolumeDataAreaSize (uint64 volumeSize, BOOL legacyVolume); uint64 GetVolumeSizeByDataAreaSize (uint64 dataSize, BOOL legacyVolume); -int QueryVolumeInfo (HWND hwndDlg, const char *lpszVolume, uint64 * pHostSizeFree, uint64 * pSizeLimitFS ); -int MountVolTemp (HWND hwndDlg, char *volumePath, int *driveNo, Password *password, int pkcs5, int pim); -BOOL GetFileSystemType(const char *szFileName, enum EV_FileSystem *pFS); -BOOL GetNtfsNumberOfSectors(char *rootPath, uint64 *pNumberOfSectors, DWORD *pBytesPerSector); +int QueryVolumeInfo (HWND hwndDlg, const wchar_t *lpszVolume, uint64 * pHostSizeFree, uint64 * pSizeLimitFS ); +int MountVolTemp (HWND hwndDlg, wchar_t *volumePath, int *driveNo, Password *password, int pkcs5, int pim); +BOOL GetFileSystemType(const wchar_t *szFileName, enum EV_FileSystem *pFS); +BOOL GetNtfsNumberOfSectors(wchar_t *rootPath, uint64 *pNumberOfSectors, DWORD *pBytesPerSector); void __cdecl volTransformThreadFunction (void *hwndDlgArg); /* defined in DlgExpandVolume.cpp */ @@ -71,7 +71,7 @@ void SetProgressDlgStatus(HWND hwndDlg, const char* szText); #endif /* defined in DlgExpandVolume.cpp */ -void ExpandVolumeWizard (HWND hwndDlg, char *lpszVolume); +void ExpandVolumeWizard (HWND hwndDlg, wchar_t *lpszVolume); #endif /* TC_HEADER_ExpandVolume */
\ No newline at end of file |