mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 19:22:58 +00:00
[REACTOS] Fix SIZE_T related warnings
This commit is contained in:
parent
826704ba6b
commit
7611cc2b12
21 changed files with 103 additions and 46 deletions
|
@ -52,7 +52,7 @@ FileQueryFiles(IN LPCWSTR Path,
|
|||
WIN32_FIND_DATAW find_data;
|
||||
|
||||
LPWSTR lpszQuery;
|
||||
DWORD dwNumOfChars;
|
||||
SIZE_T dwNumOfChars;
|
||||
LPWSTR lpszExpandedQuery;
|
||||
HANDLE search;
|
||||
|
||||
|
@ -93,7 +93,7 @@ FileQueryFiles(IN LPCWSTR Path,
|
|||
BOOL BackupIniFile(IN LPCWSTR lpszIniFile)
|
||||
{
|
||||
BOOL Success = FALSE;
|
||||
DWORD dwNumOfChars = 0;
|
||||
SIZE_T dwNumOfChars = 0;
|
||||
LPWSTR SourceFile, DestFile;
|
||||
LPWSTR lpName, lpPath;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue