Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
a9644716
Commit
a9644716
authored
Dec 13, 2002
by
Rolf Kalbermatter
Committed by
Alexandre Julliard
Dec 13, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed some signed/unsigned comparison warnings.
parent
08ee2e1c
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
16 additions
and
13 deletions
+16
-13
changenotify.c
dlls/shell32/changenotify.c
+2
-2
clipboard.c
dlls/shell32/clipboard.c
+3
-2
dataobject.c
dlls/shell32/dataobject.c
+1
-1
dialogs.c
dlls/shell32/dialogs.c
+1
-1
shellord.c
dlls/shell32/shellord.c
+1
-1
shfldr_fs.c
dlls/shell32/shfldr_fs.c
+2
-2
shlexec.c
dlls/shell32/shlexec.c
+2
-1
shlview.c
dlls/shell32/shlview.c
+3
-2
shv_item_cmenu.c
dlls/shell32/shv_item_cmenu.c
+1
-1
No files found.
dlls/shell32/changenotify.c
View file @
a9644716
...
...
@@ -63,7 +63,7 @@ void FreeChangeNotifications()
while
(
ptr
!=
&
tail
)
{
int
i
;
UINT
i
;
item
=
ptr
;
ptr
=
ptr
->
next
;
...
...
@@ -119,7 +119,7 @@ static BOOL DeleteNode(LPNOTIFICATIONLIST item)
if
(
ptr
==
item
)
{
int
i
;
UINT
i
;
TRACE
(
"item=%p prev=%p next=%p
\n
"
,
item
,
item
->
prev
,
item
->
next
);
...
...
dlls/shell32/clipboard.c
View file @
a9644716
...
...
@@ -90,7 +90,7 @@ BOOL GetShellOle(void)
*/
HGLOBAL
RenderHDROP
(
LPITEMIDLIST
pidlRoot
,
LPITEMIDLIST
*
apidl
,
UINT
cidl
)
{
int
i
;
UINT
i
;
int
rootsize
=
0
,
size
=
0
;
char
szRootPath
[
MAX_PATH
];
char
szFileName
[
MAX_PATH
];
...
...
@@ -143,7 +143,8 @@ HGLOBAL RenderHDROP(LPITEMIDLIST pidlRoot, LPITEMIDLIST * apidl, UINT cidl)
HGLOBAL
RenderSHELLIDLIST
(
LPITEMIDLIST
pidlRoot
,
LPITEMIDLIST
*
apidl
,
UINT
cidl
)
{
int
i
,
offset
=
0
,
sizePidl
,
size
;
UINT
i
;
int
offset
=
0
,
sizePidl
,
size
;
HGLOBAL
hGlobal
;
LPIDA
pcida
;
...
...
dlls/shell32/dataobject.c
View file @
a9644716
...
...
@@ -145,7 +145,7 @@ static ULONG WINAPI IEnumFORMATETC_fnRelease(LPENUMFORMATETC iface)
static
HRESULT
WINAPI
IEnumFORMATETC_fnNext
(
LPENUMFORMATETC
iface
,
ULONG
celt
,
FORMATETC
*
rgelt
,
ULONG
*
pceltFethed
)
{
ICOM_THIS
(
IEnumFORMATETCImpl
,
iface
);
int
i
;
UINT
i
;
TRACE
(
"(%p)->(%lu,%p)
\n
"
,
This
,
celt
,
rgelt
);
...
...
dlls/shell32/dialogs.c
View file @
a9644716
...
...
@@ -255,7 +255,7 @@ void FillList (HWND hCb, char *pszLatest)
/* char szDbgMsg[256] = "" ; */
char
*
pszList
=
NULL
,
*
pszCmd
=
NULL
,
cMatch
=
0
,
cMax
=
0x60
,
szIndex
[
2
]
=
"-"
;
DWORD
icList
=
0
,
icCmd
=
0
;
int
Nix
;
UINT
Nix
;
SendMessageA
(
hCb
,
CB_RESETCONTENT
,
0
,
0
)
;
...
...
dlls/shell32/shellord.c
View file @
a9644716
...
...
@@ -1364,7 +1364,7 @@ HRESULT WINAPI CIDLData_CreateFromIDArray(
LPCITEMIDLIST
*
lppidlFiles
,
LPDATAOBJECT
*
ppdataObject
)
{
INT
i
;
U
INT
i
;
HWND
hwnd
=
0
;
/*FIXME: who should be hwnd of owner? set to desktop */
TRACE
(
"(%p, %ld, %p, %p)
\n
"
,
pidlFolder
,
cpidlFiles
,
lppidlFiles
,
ppdataObject
);
...
...
dlls/shell32/shfldr_fs.c
View file @
a9644716
...
...
@@ -962,7 +962,7 @@ static HRESULT WINAPI ISFHelper_fnAddFolder (ISFHelper * iface, HWND hwnd, LPCST
static
HRESULT
WINAPI
ISFHelper_fnDeleteItems
(
ISFHelper
*
iface
,
UINT
cidl
,
LPCITEMIDLIST
*
apidl
)
{
_ICOM_THIS_From_ISFHelper
(
IGenericSFImpl
,
iface
)
int
i
;
UINT
i
;
char
szPath
[
MAX_PATH
];
BOOL
bConfirm
=
TRUE
;
...
...
@@ -1019,7 +1019,7 @@ static HRESULT WINAPI ISFHelper_fnDeleteItems (ISFHelper * iface, UINT cidl, LPC
static
HRESULT
WINAPI
ISFHelper_fnCopyItems
(
ISFHelper
*
iface
,
IShellFolder
*
pSFFrom
,
UINT
cidl
,
LPCITEMIDLIST
*
apidl
)
{
int
i
;
UINT
i
;
IPersistFolder2
*
ppf2
=
NULL
;
char
szSrcPath
[
MAX_PATH
],
szDstPath
[
MAX_PATH
];
...
...
dlls/shell32/shlexec.c
View file @
a9644716
...
...
@@ -170,7 +170,6 @@ static UINT SHELL_FindExecutable(LPCSTR lpPath, LPCSTR lpFile, LPCSTR lpOperatio
char
buffer
[
256
];
/* Used to GetProfileString */
UINT
retval
=
31
;
/* default - 'No association was found' */
char
*
tok
;
/* token pointer */
int
i
;
/* random counter */
char
xlpFile
[
256
]
=
""
;
/* result of SearchPath */
TRACE
(
"%s
\n
"
,
(
lpFile
!=
NULL
)
?
lpFile
:
"-"
);
...
...
@@ -224,6 +223,8 @@ static UINT SHELL_FindExecutable(LPCSTR lpPath, LPCSTR lpFile, LPCSTR lpOperatio
if
(
GetProfileStringA
(
"windows"
,
"programs"
,
"exe pif bat com"
,
buffer
,
sizeof
(
buffer
))
>
0
)
{
UINT
i
;
for
(
i
=
0
;
i
<
strlen
(
buffer
);
i
++
)
buffer
[
i
]
=
tolower
(
buffer
[
i
]);
tok
=
strtok
(
buffer
,
"
\t
"
);
/* ? */
...
...
dlls/shell32/shlview.c
View file @
a9644716
...
...
@@ -561,7 +561,7 @@ static HRESULT ShellView_FillList(IShellViewImpl * This)
LPENUMIDLIST
pEnumIDList
;
LPITEMIDLIST
pidl
;
DWORD
dwFetched
;
U
INT
i
;
INT
i
;
HRESULT
hRes
;
HDPA
hdpa
;
...
...
@@ -1313,7 +1313,8 @@ static LRESULT ShellView_OnNotify(IShellViewImpl * This, UINT CtlID, LPNMHDR lpn
#endif
else
if
(
plvKeyDown
->
wVKey
==
VK_DELETE
)
{
int
i
,
item_index
;
UINT
i
;
int
item_index
;
LVITEMA
item
;
LPITEMIDLIST
*
pItems
;
ISFHelper
*
psfhlp
;
...
...
dlls/shell32/shv_item_cmenu.c
View file @
a9644716
...
...
@@ -265,7 +265,7 @@ static void DoOpenExplore(
{
ICOM_THIS
(
ItemCmImpl
,
iface
);
int
i
,
bFolderFound
=
FALSE
;
UINT
i
,
bFolderFound
=
FALSE
;
LPITEMIDLIST
pidlFQ
;
SHELLEXECUTEINFOA
sei
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment