dmcompos: Avoid newlines inside FIXME messages.
This commit is contained in:
parent
08f1036525
commit
9fb879a313
|
@ -34,7 +34,7 @@ typedef struct {
|
||||||
* DirectMusicChordMap ClassFactory
|
* DirectMusicChordMap ClassFactory
|
||||||
*/
|
*/
|
||||||
static HRESULT WINAPI ChordMapCF_QueryInterface(LPCLASSFACTORY iface,REFIID riid,LPVOID *ppobj) {
|
static HRESULT WINAPI ChordMapCF_QueryInterface(LPCLASSFACTORY iface,REFIID riid,LPVOID *ppobj) {
|
||||||
FIXME("- no interface\n\tIID:\t%s\n", debugstr_guid(riid));
|
FIXME("- no interface IID: %s\n", debugstr_guid(riid));
|
||||||
|
|
||||||
if (ppobj == NULL) return E_POINTER;
|
if (ppobj == NULL) return E_POINTER;
|
||||||
|
|
||||||
|
@ -84,7 +84,7 @@ static IClassFactoryImpl ChordMap_CF = {&ChordMapCF_Vtbl};
|
||||||
* DirectMusicComposer ClassFactory
|
* DirectMusicComposer ClassFactory
|
||||||
*/
|
*/
|
||||||
static HRESULT WINAPI ComposerCF_QueryInterface(LPCLASSFACTORY iface,REFIID riid,LPVOID *ppobj) {
|
static HRESULT WINAPI ComposerCF_QueryInterface(LPCLASSFACTORY iface,REFIID riid,LPVOID *ppobj) {
|
||||||
FIXME("- no interface\n\tIID:\t%s\n", debugstr_guid(riid));
|
FIXME("- no interface IID: %s\n", debugstr_guid(riid));
|
||||||
|
|
||||||
if (ppobj == NULL) return E_POINTER;
|
if (ppobj == NULL) return E_POINTER;
|
||||||
|
|
||||||
|
@ -134,7 +134,7 @@ static IClassFactoryImpl Composer_CF = {&ComposerCF_Vtbl};
|
||||||
* DirectMusicChordMapTrack ClassFactory
|
* DirectMusicChordMapTrack ClassFactory
|
||||||
*/
|
*/
|
||||||
static HRESULT WINAPI ChordMapTrackCF_QueryInterface(LPCLASSFACTORY iface,REFIID riid,LPVOID *ppobj) {
|
static HRESULT WINAPI ChordMapTrackCF_QueryInterface(LPCLASSFACTORY iface,REFIID riid,LPVOID *ppobj) {
|
||||||
FIXME("- no interface\n\tIID:\t%s\n", debugstr_guid(riid));
|
FIXME("- no interface IID: %s\n", debugstr_guid(riid));
|
||||||
|
|
||||||
if (ppobj == NULL) return E_POINTER;
|
if (ppobj == NULL) return E_POINTER;
|
||||||
|
|
||||||
|
@ -184,7 +184,7 @@ static IClassFactoryImpl ChordMapTrack_CF = {&ChordMapTrackCF_Vtbl};
|
||||||
* DirectMusicTemplate ClassFactory
|
* DirectMusicTemplate ClassFactory
|
||||||
*/
|
*/
|
||||||
static HRESULT WINAPI TemplateCF_QueryInterface(LPCLASSFACTORY iface,REFIID riid,LPVOID *ppobj) {
|
static HRESULT WINAPI TemplateCF_QueryInterface(LPCLASSFACTORY iface,REFIID riid,LPVOID *ppobj) {
|
||||||
FIXME("- no interface\n\tIID:\t%s\n", debugstr_guid(riid));
|
FIXME("- no interface IID: %s\n", debugstr_guid(riid));
|
||||||
|
|
||||||
if (ppobj == NULL) return E_POINTER;
|
if (ppobj == NULL) return E_POINTER;
|
||||||
|
|
||||||
|
@ -236,7 +236,7 @@ static IClassFactoryImpl Template_CF = {&TemplateCF_Vtbl};
|
||||||
* DirectMusicSignPostTrack ClassFactory
|
* DirectMusicSignPostTrack ClassFactory
|
||||||
*/
|
*/
|
||||||
static HRESULT WINAPI SignPostTrackCF_QueryInterface(LPCLASSFACTORY iface,REFIID riid,LPVOID *ppobj) {
|
static HRESULT WINAPI SignPostTrackCF_QueryInterface(LPCLASSFACTORY iface,REFIID riid,LPVOID *ppobj) {
|
||||||
FIXME("- no interface\n\tIID:\t%s\n", debugstr_guid(riid));
|
FIXME("- no interface IID: %s\n", debugstr_guid(riid));
|
||||||
|
|
||||||
if (ppobj == NULL) return E_POINTER;
|
if (ppobj == NULL) return E_POINTER;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue