Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
53a3d04d
Commit
53a3d04d
authored
Jul 06, 2005
by
Mike McCormack
Committed by
Alexandre Julliard
Jul 06, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix gcc 4.0 -Wpointer-sign warnings.
parent
e467a530
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
main.c
dlls/mshtml/main.c
+1
-1
mshtml_private.h
dlls/mshtml/mshtml_private.h
+1
-1
protocol.c
dlls/mshtml/protocol.c
+2
-2
No files found.
dlls/mshtml/main.c
View file @
53a3d04d
...
...
@@ -127,7 +127,7 @@ BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID lpv)
typedef
HRESULT
(
*
CreateInstanceFunc
)(
IUnknown
*
,
REFIID
,
void
**
);
typedef
struct
{
const
IClassFactoryVtbl
*
lpVtbl
;
U
LONG
ref
;
LONG
ref
;
CreateInstanceFunc
fnCreateInstance
;
}
ClassFactory
;
...
...
dlls/mshtml/mshtml_private.h
View file @
53a3d04d
...
...
@@ -29,7 +29,7 @@ typedef struct {
const
IOleInPlaceObjectWindowlessVtbl
*
lpOleInPlaceObjectWindowlessVtbl
;
const
IServiceProviderVtbl
*
lpServiceProviderVtbl
;
U
LONG
ref
;
LONG
ref
;
IOleClientSite
*
client
;
IOleInPlaceSite
*
ipsite
;
...
...
dlls/mshtml/protocol.c
View file @
53a3d04d
...
...
@@ -130,7 +130,7 @@ static HRESULT WINAPI ClassFactory_LockServer(IClassFactory *iface, BOOL dolock)
typedef
struct
{
const
IInternetProtocolVtbl
*
lpInternetProtocolVtbl
;
U
LONG
ref
;
LONG
ref
;
}
AboutProtocol
;
static
HRESULT
WINAPI
AboutProtocol_QueryInterface
(
IInternetProtocol
*
iface
,
REFIID
riid
,
void
**
ppv
)
...
...
@@ -355,7 +355,7 @@ static ProtocolFactory AboutProtocolFactory = {
typedef
struct
{
const
IInternetProtocolVtbl
*
lpInternetProtocolVtbl
;
U
LONG
ref
;
LONG
ref
;
BYTE
*
data
;
ULONG
data_len
;
...
...
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