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
058e38af
Commit
058e38af
authored
Jul 03, 2005
by
Mike McCormack
Committed by
Alexandre Julliard
Jul 03, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix -Wpointer-sign warnings.
parent
e28c014a
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
9 additions
and
8 deletions
+9
-8
sec_mgr.c
dlls/urlmon/sec_mgr.c
+2
-2
umon.c
dlls/urlmon/umon.c
+2
-2
umstream.c
dlls/urlmon/umstream.c
+3
-2
urlmon_main.c
dlls/urlmon/urlmon_main.c
+1
-1
urlmon_main.h
dlls/urlmon/urlmon_main.h
+1
-1
No files found.
dlls/urlmon/sec_mgr.c
View file @
058e38af
...
@@ -43,7 +43,7 @@ typedef struct SecManagerImpl{
...
@@ -43,7 +43,7 @@ typedef struct SecManagerImpl{
const
IInternetSecurityManagerVtbl
*
lpvtbl1
;
/* VTable relative to the IInternetSecurityManager interface.*/
const
IInternetSecurityManagerVtbl
*
lpvtbl1
;
/* VTable relative to the IInternetSecurityManager interface.*/
U
LONG
ref
;
/* reference counter for this object */
LONG
ref
;
/* reference counter for this object */
}
SecManagerImpl
;
}
SecManagerImpl
;
...
@@ -210,7 +210,7 @@ HRESULT SecManagerImpl_Construct(IUnknown *pUnkOuter, LPVOID *ppobj)
...
@@ -210,7 +210,7 @@ HRESULT SecManagerImpl_Construct(IUnknown *pUnkOuter, LPVOID *ppobj)
*/
*/
typedef
struct
{
typedef
struct
{
const
IInternetZoneManagerVtbl
*
lpVtbl
;
const
IInternetZoneManagerVtbl
*
lpVtbl
;
U
LONG
ref
;
LONG
ref
;
}
ZoneMgrImpl
;
}
ZoneMgrImpl
;
/********************************************************************
/********************************************************************
...
...
dlls/urlmon/umon.c
View file @
058e38af
...
@@ -51,7 +51,7 @@ static const WCHAR BSCBHolder[] = { '_','B','S','C','B','_','H','o','l','d','e',
...
@@ -51,7 +51,7 @@ static const WCHAR BSCBHolder[] = { '_','B','S','C','B','_','H','o','l','d','e',
typedef
struct
{
typedef
struct
{
const
IBindingVtbl
*
lpVtbl
;
const
IBindingVtbl
*
lpVtbl
;
U
LONG
ref
;
LONG
ref
;
LPWSTR
URLName
;
LPWSTR
URLName
;
...
@@ -291,7 +291,7 @@ typedef struct {
...
@@ -291,7 +291,7 @@ typedef struct {
const
IMonikerVtbl
*
lpvtbl
;
/* VTable relative to the IMoniker interface.*/
const
IMonikerVtbl
*
lpvtbl
;
/* VTable relative to the IMoniker interface.*/
U
LONG
ref
;
/* reference counter for this object */
LONG
ref
;
/* reference counter for this object */
LPOLESTR
URLName
;
/* URL string identified by this URLmoniker */
LPOLESTR
URLName
;
/* URL string identified by this URLmoniker */
}
URLMonikerImpl
;
}
URLMonikerImpl
;
...
...
dlls/urlmon/umstream.c
View file @
058e38af
...
@@ -253,7 +253,8 @@ static HRESULT WINAPI IStream_fnSeek ( IStream * iface,
...
@@ -253,7 +253,8 @@ static HRESULT WINAPI IStream_fnSeek ( IStream * iface,
DWORD
dwOrigin
,
DWORD
dwOrigin
,
ULARGE_INTEGER
*
plibNewPosition
)
ULARGE_INTEGER
*
plibNewPosition
)
{
{
DWORD
pos
,
newposlo
,
newposhi
;
DWORD
pos
,
newposlo
;
LONG
newposhi
;
IUMCacheStream
*
This
=
(
IUMCacheStream
*
)
iface
;
IUMCacheStream
*
This
=
(
IUMCacheStream
*
)
iface
;
...
@@ -262,7 +263,7 @@ static HRESULT WINAPI IStream_fnSeek ( IStream * iface,
...
@@ -262,7 +263,7 @@ static HRESULT WINAPI IStream_fnSeek ( IStream * iface,
pos
=
dlibMove
.
QuadPart
;
/* FIXME: truncates */
pos
=
dlibMove
.
QuadPart
;
/* FIXME: truncates */
newposhi
=
0
;
newposhi
=
0
;
newposlo
=
SetFilePointer
(
This
->
handle
,
pos
,
&
newposhi
,
dwOrigin
);
newposlo
=
SetFilePointer
(
This
->
handle
,
pos
,
&
newposhi
,
dwOrigin
);
if
(
newposlo
==
INVALID_SET_FILE_POINTER
)
if
(
newposlo
==
INVALID_SET_FILE_POINTER
&&
GetLastError
()
)
return
E_FAIL
;
return
E_FAIL
;
if
(
plibNewPosition
)
if
(
plibNewPosition
)
...
...
dlls/urlmon/urlmon_main.c
View file @
058e38af
...
@@ -89,7 +89,7 @@ HRESULT WINAPI URLMON_DllCanUnloadNow(void)
...
@@ -89,7 +89,7 @@ HRESULT WINAPI URLMON_DllCanUnloadNow(void)
typedef
struct
{
typedef
struct
{
IClassFactory
ITF_IClassFactory
;
IClassFactory
ITF_IClassFactory
;
DWORD
ref
;
LONG
ref
;
HRESULT
(
*
pfnCreateInstance
)(
IUnknown
*
pUnkOuter
,
LPVOID
*
ppObj
);
HRESULT
(
*
pfnCreateInstance
)(
IUnknown
*
pUnkOuter
,
LPVOID
*
ppObj
);
}
IClassFactoryImpl
;
}
IClassFactoryImpl
;
...
...
dlls/urlmon/urlmon_main.h
View file @
058e38af
...
@@ -40,7 +40,7 @@ static inline void URLMON_UnlockModule(void) { InterlockedDecrement( &URLMON_ref
...
@@ -40,7 +40,7 @@ static inline void URLMON_UnlockModule(void) { InterlockedDecrement( &URLMON_ref
typedef
struct
typedef
struct
{
{
const
IStreamVtbl
*
lpVtbl
;
const
IStreamVtbl
*
lpVtbl
;
DWORD
ref
;
LONG
ref
;
HANDLE
handle
;
HANDLE
handle
;
BOOL
closed
;
BOOL
closed
;
WCHAR
*
pszFileName
;
WCHAR
*
pszFileName
;
...
...
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