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
9fb879a3
Commit
9fb879a3
authored
Jan 11, 2010
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Jan 14, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dmcompos: Avoid newlines inside FIXME messages.
parent
08f10365
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
dmcompos_main.c
dlls/dmcompos/dmcompos_main.c
+10
-10
No files found.
dlls/dmcompos/dmcompos_main.c
View file @
9fb879a3
...
...
@@ -34,8 +34,8 @@ typedef struct {
* DirectMusicChordMap ClassFactory
*/
static
HRESULT
WINAPI
ChordMapCF_QueryInterface
(
LPCLASSFACTORY
iface
,
REFIID
riid
,
LPVOID
*
ppobj
)
{
FIXME
(
"- no interface
\n\t
IID:
\t
%s
\n
"
,
debugstr_guid
(
riid
));
FIXME
(
"- no interface
IID:
%s
\n
"
,
debugstr_guid
(
riid
));
if
(
ppobj
==
NULL
)
return
E_POINTER
;
return
E_NOINTERFACE
;
...
...
@@ -84,8 +84,8 @@ static IClassFactoryImpl ChordMap_CF = {&ChordMapCF_Vtbl};
* DirectMusicComposer ClassFactory
*/
static
HRESULT
WINAPI
ComposerCF_QueryInterface
(
LPCLASSFACTORY
iface
,
REFIID
riid
,
LPVOID
*
ppobj
)
{
FIXME
(
"- no interface
\n\t
IID:
\t
%s
\n
"
,
debugstr_guid
(
riid
));
FIXME
(
"- no interface
IID:
%s
\n
"
,
debugstr_guid
(
riid
));
if
(
ppobj
==
NULL
)
return
E_POINTER
;
return
E_NOINTERFACE
;
...
...
@@ -134,8 +134,8 @@ static IClassFactoryImpl Composer_CF = {&ComposerCF_Vtbl};
* DirectMusicChordMapTrack ClassFactory
*/
static
HRESULT
WINAPI
ChordMapTrackCF_QueryInterface
(
LPCLASSFACTORY
iface
,
REFIID
riid
,
LPVOID
*
ppobj
)
{
FIXME
(
"- no interface
\n\t
IID:
\t
%s
\n
"
,
debugstr_guid
(
riid
));
FIXME
(
"- no interface
IID:
%s
\n
"
,
debugstr_guid
(
riid
));
if
(
ppobj
==
NULL
)
return
E_POINTER
;
return
E_NOINTERFACE
;
...
...
@@ -184,8 +184,8 @@ static IClassFactoryImpl ChordMapTrack_CF = {&ChordMapTrackCF_Vtbl};
* DirectMusicTemplate ClassFactory
*/
static
HRESULT
WINAPI
TemplateCF_QueryInterface
(
LPCLASSFACTORY
iface
,
REFIID
riid
,
LPVOID
*
ppobj
)
{
FIXME
(
"- no interface
\n\t
IID:
\t
%s
\n
"
,
debugstr_guid
(
riid
));
FIXME
(
"- no interface
IID:
%s
\n
"
,
debugstr_guid
(
riid
));
if
(
ppobj
==
NULL
)
return
E_POINTER
;
return
E_NOINTERFACE
;
...
...
@@ -236,8 +236,8 @@ static IClassFactoryImpl Template_CF = {&TemplateCF_Vtbl};
* DirectMusicSignPostTrack ClassFactory
*/
static
HRESULT
WINAPI
SignPostTrackCF_QueryInterface
(
LPCLASSFACTORY
iface
,
REFIID
riid
,
LPVOID
*
ppobj
)
{
FIXME
(
"- no interface
\n\t
IID:
\t
%s
\n
"
,
debugstr_guid
(
riid
));
FIXME
(
"- no interface
IID:
%s
\n
"
,
debugstr_guid
(
riid
));
if
(
ppobj
==
NULL
)
return
E_POINTER
;
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