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
71d73319
Commit
71d73319
authored
Jan 11, 2010
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Jan 14, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
devenum: Avoid newlines inside FIXME messages.
parent
bedea431
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
7 additions
and
7 deletions
+7
-7
createdevenum.c
dlls/devenum/createdevenum.c
+1
-1
devenum_main.c
dlls/devenum/devenum_main.c
+1
-1
factory.c
dlls/devenum/factory.c
+1
-1
mediacatenum.c
dlls/devenum/mediacatenum.c
+3
-3
parsedisplayname.c
dlls/devenum/parsedisplayname.c
+1
-1
No files found.
dlls/devenum/createdevenum.c
View file @
71d73319
...
@@ -76,7 +76,7 @@ static HRESULT WINAPI DEVENUM_ICreateDevEnum_QueryInterface(
...
@@ -76,7 +76,7 @@ static HRESULT WINAPI DEVENUM_ICreateDevEnum_QueryInterface(
return
S_OK
;
return
S_OK
;
}
}
FIXME
(
"- no interface
\n\t
IID:
\t
%s
\n
"
,
debugstr_guid
(
riid
));
FIXME
(
"- no interface
IID:
%s
\n
"
,
debugstr_guid
(
riid
));
return
E_NOINTERFACE
;
return
E_NOINTERFACE
;
}
}
...
...
dlls/devenum/devenum_main.c
View file @
71d73319
...
@@ -78,7 +78,7 @@ HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID iid, LPVOID *ppv)
...
@@ -78,7 +78,7 @@ HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID iid, LPVOID *ppv)
IsEqualGUID
(
rclsid
,
&
CLSID_CDeviceMoniker
))
IsEqualGUID
(
rclsid
,
&
CLSID_CDeviceMoniker
))
return
IClassFactory_QueryInterface
((
IClassFactory
*
)
&
DEVENUM_ClassFactory
,
iid
,
ppv
);
return
IClassFactory_QueryInterface
((
IClassFactory
*
)
&
DEVENUM_ClassFactory
,
iid
,
ppv
);
FIXME
(
"
\n\t
CLSID:
\t
%s,
\n\t
IID:
\t
%s
\n
"
,
debugstr_guid
(
rclsid
),
debugstr_guid
(
iid
));
FIXME
(
"
CLSID: %s, IID: %s
\n
"
,
debugstr_guid
(
rclsid
),
debugstr_guid
(
iid
));
return
CLASS_E_CLASSNOTAVAILABLE
;
return
CLASS_E_CLASSNOTAVAILABLE
;
}
}
...
...
dlls/devenum/factory.c
View file @
71d73319
...
@@ -49,7 +49,7 @@ static HRESULT WINAPI DEVENUM_IClassFactory_QueryInterface(
...
@@ -49,7 +49,7 @@ static HRESULT WINAPI DEVENUM_IClassFactory_QueryInterface(
return
IClassFactory_CreateInstance
(
iface
,
NULL
,
riid
,
ppvObj
);
return
IClassFactory_CreateInstance
(
iface
,
NULL
,
riid
,
ppvObj
);
}
}
FIXME
(
"- no interface
\n\t
IID:
\t
%s
\n
"
,
debugstr_guid
(
riid
));
FIXME
(
"- no interface
IID:
%s
\n
"
,
debugstr_guid
(
riid
));
return
E_NOINTERFACE
;
return
E_NOINTERFACE
;
}
}
...
...
dlls/devenum/mediacatenum.c
View file @
71d73319
...
@@ -61,7 +61,7 @@ static HRESULT WINAPI DEVENUM_IPropertyBag_QueryInterface(
...
@@ -61,7 +61,7 @@ static HRESULT WINAPI DEVENUM_IPropertyBag_QueryInterface(
return
S_OK
;
return
S_OK
;
}
}
FIXME
(
"- no interface
\n\t
IID:
\t
%s
\n
"
,
debugstr_guid
(
riid
));
FIXME
(
"- no interface
IID:
%s
\n
"
,
debugstr_guid
(
riid
));
return
E_NOINTERFACE
;
return
E_NOINTERFACE
;
}
}
...
@@ -308,7 +308,7 @@ static HRESULT WINAPI DEVENUM_IMediaCatMoniker_QueryInterface(
...
@@ -308,7 +308,7 @@ static HRESULT WINAPI DEVENUM_IMediaCatMoniker_QueryInterface(
return
S_OK
;
return
S_OK
;
}
}
FIXME
(
"- no interface
\n\t
IID:
\t
%s
\n
"
,
debugstr_guid
(
riid
));
FIXME
(
"- no interface
IID:
%s
\n
"
,
debugstr_guid
(
riid
));
return
E_NOINTERFACE
;
return
E_NOINTERFACE
;
}
}
...
@@ -723,7 +723,7 @@ static HRESULT WINAPI DEVENUM_IEnumMoniker_QueryInterface(
...
@@ -723,7 +723,7 @@ static HRESULT WINAPI DEVENUM_IEnumMoniker_QueryInterface(
return
S_OK
;
return
S_OK
;
}
}
FIXME
(
"- no interface
\n\t
IID:
\t
%s
\n
"
,
debugstr_guid
(
riid
));
FIXME
(
"- no interface
IID:
%s
\n
"
,
debugstr_guid
(
riid
));
return
E_NOINTERFACE
;
return
E_NOINTERFACE
;
}
}
...
...
dlls/devenum/parsedisplayname.c
View file @
71d73319
...
@@ -44,7 +44,7 @@ static HRESULT WINAPI DEVENUM_IParseDisplayName_QueryInterface(
...
@@ -44,7 +44,7 @@ static HRESULT WINAPI DEVENUM_IParseDisplayName_QueryInterface(
return
S_OK
;
return
S_OK
;
}
}
FIXME
(
"- no interface
\n\t
IID:
\t
%s
\n
"
,
debugstr_guid
(
riid
));
FIXME
(
"- no interface
IID:
%s
\n
"
,
debugstr_guid
(
riid
));
return
E_NOINTERFACE
;
return
E_NOINTERFACE
;
}
}
...
...
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