From 85e5e383f9b879736d7a793a5dc0f9bce20b8383 Mon Sep 17 00:00:00 2001 From: Mounir IDRASSI Date: Sat, 23 May 2015 19:26:06 +0200 Subject: Windows: solve 64-bit compilation warnings after checking that they are harmless. --- src/Common/Dlgcode.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/Common/Dlgcode.h') diff --git a/src/Common/Dlgcode.h b/src/Common/Dlgcode.h index 115a3b85..e45a9b87 100644 --- a/src/Common/Dlgcode.h +++ b/src/Common/Dlgcode.h @@ -302,7 +302,7 @@ int GetAvailableRemovables ( HWND hComboBox , char *lpszRootPath ); int IsSystemDevicePath (const char *path, HWND hwndDlg, BOOL bReliableRequired); int IsNonSysPartitionOnSysDrive (const char *path); BOOL CALLBACK RawDevicesDlgProc ( HWND hwndDlg , UINT msg , WPARAM wParam , LPARAM lParam ); -BOOL TextInfoDialogBox (int nID); +INT_PTR TextInfoDialogBox (int nID); BOOL CALLBACK TextInfoDialogBoxDlgProc (HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam); char * GetLegalNotices (); BOOL CALLBACK BenchmarkDlgProc (HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam); @@ -346,13 +346,13 @@ int FileSystemAppearsEmpty (const char *devicePath); __int64 GetStatsFreeSpaceOnPartition (const char *devicePath, float *percent, __int64 *occupiedBytes, BOOL silent); __int64 GetDeviceSize (const char *devicePath); HANDLE DismountDrive (char *devName, char *devicePath); -int64 FindString (const char *buf, const char *str, int64 bufLen, size_t strLen, int64 startOffset); +int64 FindString (const char *buf, const char *str, int64 bufLen, int64 strLen, int64 startOffset); BOOL FileExists (const char *filePathPtr); __int64 FindStringInFile (const char *filePath, const char *str, int strLen); BOOL TCCopyFile (char *sourceFileName, char *destinationFile); BOOL SaveBufferToFile (const char *inputBuffer, const char *destinationFile, DWORD inputLength, BOOL bAppend); BOOL TCFlushFile (FILE *f); -BOOL PrintHardCopyTextUTF16 (wchar_t *text, char *title, int byteLen); +BOOL PrintHardCopyTextUTF16 (wchar_t *text, char *title, size_t byteLen); void GetSpeedString (unsigned __int64 speed, wchar_t *str, size_t cbStr); BOOL IsNonInstallMode (); BOOL DriverUnload (); @@ -374,7 +374,7 @@ __int64 GetFileSize64 (const char *path); BOOL LoadInt16 (char *filePath, int *result, __int64 fileOffset); BOOL LoadInt32 (char *filePath, unsigned __int32 *result, __int64 fileOffset); char *LoadFile (const char *fileName, DWORD *size); -char *LoadFileBlock (char *fileName, __int64 fileOffset, size_t count); +char *LoadFileBlock (char *fileName, __int64 fileOffset, DWORD count); char *GetModPath (char *path, int maxSize); char *GetConfigPath (char *fileName); char *GetProgramConfigPath (char *fileName); -- cgit v1.2.3