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
24e4acf7
Commit
24e4acf7
authored
Jul 11, 2006
by
Andrew Talbot
Committed by
Alexandre Julliard
Jul 12, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
urlmon: Write-strings warnings fix.
parent
0924f969
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
4 deletions
+9
-4
regsvr.c
dlls/urlmon/regsvr.c
+9
-4
No files found.
dlls/urlmon/regsvr.c
View file @
24e4acf7
...
@@ -572,9 +572,14 @@ static struct regsvr_interface const interface_list[] = {
...
@@ -572,9 +572,14 @@ static struct regsvr_interface const interface_list[] = {
* register_inf
* register_inf
*/
*/
#define INF_SET_CLSID(clsid) \
#define INF_SET_CLSID(clsid) \
pse[i].pszName = "CLSID_" #clsid; \
do \
clsids[i++] = &CLSID_ ## clsid;
{ \
static CHAR name[] = "CLSID_" #clsid; \
\
pse[i].pszName = name; \
clsids[i++] = &CLSID_ ## clsid; \
} while (0)
static
HRESULT
register_inf
(
BOOL
doregister
)
static
HRESULT
register_inf
(
BOOL
doregister
)
{
{
...
@@ -587,7 +592,7 @@ static HRESULT register_inf(BOOL doregister)
...
@@ -587,7 +592,7 @@ static HRESULT register_inf(BOOL doregister)
int
i
=
0
;
int
i
=
0
;
static
const
WCHAR
wszAdvpack
[]
=
{
'a'
,
'd'
,
'v'
,
'p'
,
'a'
,
'c'
,
'k'
,
'.'
,
'd'
,
'l'
,
'l'
,
0
};
static
const
WCHAR
wszAdvpack
[]
=
{
'a'
,
'd'
,
'v'
,
'p'
,
'a'
,
'c'
,
'k'
,
'.'
,
'd'
,
'l'
,
'l'
,
0
};
INF_SET_CLSID
(
CdlProtocol
);
INF_SET_CLSID
(
CdlProtocol
);
INF_SET_CLSID
(
FileProtocol
);
INF_SET_CLSID
(
FileProtocol
);
INF_SET_CLSID
(
FtpProtocol
);
INF_SET_CLSID
(
FtpProtocol
);
...
...
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