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
e402fdf3
Commit
e402fdf3
authored
Jan 23, 2020
by
Michael Cronenworth
Committed by
Alexandre Julliard
Jan 24, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Global variable compatibility update for gcc 10.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
fba65a15
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
7 deletions
+14
-7
htmlstyle.h
dlls/mshtml/htmlstyle.h
+1
-1
main.c
dlls/mshtml/main.c
+7
-0
mshtml_private.h
dlls/mshtml/mshtml_private.h
+6
-6
No files found.
dlls/mshtml/htmlstyle.h
View file @
e402fdf3
...
...
@@ -142,7 +142,7 @@ void init_css_style(CSSStyle*,nsIDOMCSSStyleDeclaration*,style_qi_t,
dispex_static_data_t
*
,
compat_mode_t
)
DECLSPEC_HIDDEN
;
void
CSSStyle_init_dispex_info
(
dispex_data_t
*
info
,
compat_mode_t
mode
)
DECLSPEC_HIDDEN
;
const
dispex_static_data_vtbl_t
CSSStyle_dispex_vtbl
DECLSPEC_HIDDEN
;
extern
const
dispex_static_data_vtbl_t
CSSStyle_dispex_vtbl
DECLSPEC_HIDDEN
;
HRESULT
get_style_property
(
CSSStyle
*
,
styleid_t
,
BSTR
*
)
DECLSPEC_HIDDEN
;
HRESULT
get_style_property_var
(
CSSStyle
*
,
styleid_t
,
VARIANT
*
)
DECLSPEC_HIDDEN
;
...
...
dlls/mshtml/main.c
View file @
e402fdf3
...
...
@@ -51,6 +51,13 @@ WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
HINSTANCE
hInst
;
DWORD
mshtml_tls
=
TLS_OUT_OF_INDEXES
;
void
(
__cdecl
*
ccp_init
)(
ExternalCycleCollectionParticipant
*
,
const
CCObjCallback
*
);
nsrefcnt
(
__cdecl
*
ccref_decr
)(
nsCycleCollectingAutoRefCnt
*
,
nsISupports
*
,
ExternalCycleCollectionParticipant
*
);
nsrefcnt
(
__cdecl
*
ccref_incr
)(
nsCycleCollectingAutoRefCnt
*
,
nsISupports
*
);
void
(
__cdecl
*
ccref_init
)(
nsCycleCollectingAutoRefCnt
*
,
nsrefcnt
);
void
(
__cdecl
*
describe_cc_node
)(
nsCycleCollectingAutoRefCnt
*
,
const
char
*
,
nsCycleCollectionTraversalCallback
*
);
void
(
__cdecl
*
note_cc_edge
)(
nsISupports
*
,
const
char
*
,
nsCycleCollectionTraversalCallback
*
);
static
HINSTANCE
shdoclc
=
NULL
;
static
WCHAR
*
status_strings
[
IDS_STATUS_LAST
-
IDS_STATUS_FIRST
+
1
];
static
IMultiLanguage2
*
mlang
;
...
...
dlls/mshtml/mshtml_private.h
View file @
e402fdf3
...
...
@@ -355,12 +355,12 @@ typedef struct {
DEFINE_GUID
(
IID_nsXPCOMCycleCollectionParticipant
,
0x9674489b
,
0x1f6f
,
0x4550
,
0xa7
,
0x30
,
0xcc
,
0xae
,
0xdd
,
0x10
,
0x4c
,
0xf9
);
nsrefcnt
(
__cdecl
*
ccref_incr
)(
nsCycleCollectingAutoRefCnt
*
,
nsISupports
*
)
DECLSPEC_HIDDEN
;
nsrefcnt
(
__cdecl
*
ccref_decr
)(
nsCycleCollectingAutoRefCnt
*
,
nsISupports
*
,
ExternalCycleCollectionParticipant
*
)
DECLSPEC_HIDDEN
;
void
(
__cdecl
*
ccref_init
)(
nsCycleCollectingAutoRefCnt
*
,
nsrefcnt
)
DECLSPEC_HIDDEN
;
void
(
__cdecl
*
ccp_init
)(
ExternalCycleCollectionParticipant
*
,
const
CCObjCallback
*
)
DECLSPEC_HIDDEN
;
void
(
__cdecl
*
describe_cc_node
)(
nsCycleCollectingAutoRefCnt
*
,
const
char
*
,
nsCycleCollectionTraversalCallback
*
)
DECLSPEC_HIDDEN
;
void
(
__cdecl
*
note_cc_edge
)(
nsISupports
*
,
const
char
*
,
nsCycleCollectionTraversalCallback
*
)
DECLSPEC_HIDDEN
;
extern
nsrefcnt
(
__cdecl
*
ccref_incr
)(
nsCycleCollectingAutoRefCnt
*
,
nsISupports
*
)
DECLSPEC_HIDDEN
;
extern
nsrefcnt
(
__cdecl
*
ccref_decr
)(
nsCycleCollectingAutoRefCnt
*
,
nsISupports
*
,
ExternalCycleCollectionParticipant
*
)
DECLSPEC_HIDDEN
;
extern
void
(
__cdecl
*
ccref_init
)(
nsCycleCollectingAutoRefCnt
*
,
nsrefcnt
)
DECLSPEC_HIDDEN
;
extern
void
(
__cdecl
*
ccp_init
)(
ExternalCycleCollectionParticipant
*
,
const
CCObjCallback
*
)
DECLSPEC_HIDDEN
;
extern
void
(
__cdecl
*
describe_cc_node
)(
nsCycleCollectingAutoRefCnt
*
,
const
char
*
,
nsCycleCollectionTraversalCallback
*
)
DECLSPEC_HIDDEN
;
extern
void
(
__cdecl
*
note_cc_edge
)(
nsISupports
*
,
const
char
*
,
nsCycleCollectionTraversalCallback
*
)
DECLSPEC_HIDDEN
;
void
init_dispex_with_compat_mode
(
DispatchEx
*
,
IUnknown
*
,
dispex_static_data_t
*
,
compat_mode_t
)
DECLSPEC_HIDDEN
;
void
release_dispex
(
DispatchEx
*
)
DECLSPEC_HIDDEN
;
...
...
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