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
f7e38ac6
Commit
f7e38ac6
authored
Jul 12, 2006
by
Andrew Talbot
Committed by
Alexandre Julliard
Jul 13, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Write-strings warnings fix.
parent
e2bf4ff1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
5 deletions
+11
-5
main.c
dlls/mshtml/main.c
+11
-5
No files found.
dlls/mshtml/main.c
View file @
f7e38ac6
...
...
@@ -252,9 +252,14 @@ DEFINE_GUID(CLSID_MHTMLDocument, 0x3050F3D9, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xA
DEFINE_GUID
(
CLSID_Scriptlet
,
0xAE24FDAE
,
0x03C6
,
0x11D1
,
0x8B
,
0x76
,
0x00
,
0x80
,
0xC7
,
0x44
,
0xF3
,
0x89
);
DEFINE_GUID
(
CLSID_TridentAPI
,
0x429AF92C
,
0xA51F
,
0x11D2
,
0x86
,
0x1E
,
0x00
,
0xC0
,
0x4F
,
0xA3
,
0x5C
,
0x89
);
#define INF_SET_ID(id) \
pse[i].pszName = #id; \
clsids[i++] = &id;
#define INF_SET_ID(id) \
do \
{ \
static CHAR name[] = #id; \
\
pse[i].pszName = name; \
clsids[i++] = &id; \
} while (0)
#define INF_SET_CLSID(clsid) INF_SET_ID(CLSID_ ## clsid)
...
...
@@ -267,11 +272,11 @@ static HRESULT register_server(BOOL do_register)
STRENTRYA
pse
[
35
];
static
CLSID
const
*
clsids
[
35
];
int
i
=
0
;
static
const
WCHAR
wszAdvpack
[]
=
{
'a'
,
'd'
,
'v'
,
'p'
,
'a'
,
'c'
,
'k'
,
'.'
,
'd'
,
'l'
,
'l'
,
0
};
TRACE
(
"(%x)
\n
"
,
do_register
);
INF_SET_CLSID
(
AboutProtocol
);
INF_SET_CLSID
(
CAnchorBrowsePropertyPage
);
INF_SET_CLSID
(
CBackgroundPropertyPage
);
...
...
@@ -331,6 +336,7 @@ static HRESULT register_server(BOOL do_register)
}
#undef INF_SET_CLSID
#undef INF_SET_ID
/***********************************************************************
* DllRegisterServer (MSHTML.@)
...
...
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