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
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
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
+7
-2
regsvr.c
dlls/urlmon/regsvr.c
+7
-2
No files found.
dlls/urlmon/regsvr.c
View file @
24e4acf7
...
@@ -573,8 +573,13 @@ static struct regsvr_interface const interface_list[] = {
...
@@ -573,8 +573,13 @@ static struct regsvr_interface const interface_list[] = {
*/
*/
#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
)
{
{
...
...
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