Skip to content

Commit a7618ab

Browse files
rbernonivyl
authored andcommitted
windows.gaming.input: Consistently use FIXME for E_NOINTERFACE messages.
1 parent 849d139 commit a7618ab

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

dlls/windows.gaming.input/async.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ static HRESULT WINAPI async_impl_QueryInterface( IWineAsyncInfoImpl *iface, REFI
7373
return S_OK;
7474
}
7575

76-
WARN( "%s not implemented, returning E_NOINTERFACE.\n", debugstr_guid( iid ) );
76+
FIXME( "%s not implemented, returning E_NOINTERFACE.\n", debugstr_guid( iid ) );
7777
*out = NULL;
7878
return E_NOINTERFACE;
7979
}

dlls/windows.gaming.input/controller.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ static HRESULT WINAPI controller_QueryInterface( IGameControllerImpl *iface, REF
9999
return S_OK;
100100
}
101101

102-
WARN( "%s not implemented, returning E_NOINTERFACE.\n", debugstr_guid( iid ) );
102+
FIXME( "%s not implemented, returning E_NOINTERFACE.\n", debugstr_guid( iid ) );
103103
*out = NULL;
104104
return E_NOINTERFACE;
105105
}

dlls/windows.gaming.input/gamepad.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ static HRESULT WINAPI controller_QueryInterface( IGameControllerImpl *iface, REF
106106
return S_OK;
107107
}
108108

109-
WARN( "%s not implemented, returning E_NOINTERFACE.\n", debugstr_guid( iid ) );
109+
FIXME( "%s not implemented, returning E_NOINTERFACE.\n", debugstr_guid( iid ) );
110110
*out = NULL;
111111
return E_NOINTERFACE;
112112
}

dlls/windows.gaming.input/racing_wheel.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ static HRESULT WINAPI controller_QueryInterface( IGameControllerImpl *iface, REF
9999
return S_OK;
100100
}
101101

102-
WARN( "%s not implemented, returning E_NOINTERFACE.\n", debugstr_guid( iid ) );
102+
FIXME( "%s not implemented, returning E_NOINTERFACE.\n", debugstr_guid( iid ) );
103103
*out = NULL;
104104
return E_NOINTERFACE;
105105
}

dlls/windows.gaming.input/vector.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ static HRESULT WINAPI iterator_QueryInterface( IIterator_IInspectable *iface, RE
5454
return S_OK;
5555
}
5656

57-
WARN( "%s not implemented, returning E_NOINTERFACE.\n", debugstr_guid( iid ) );
57+
FIXME( "%s not implemented, returning E_NOINTERFACE.\n", debugstr_guid( iid ) );
5858
*out = NULL;
5959
return E_NOINTERFACE;
6060
}
@@ -189,7 +189,7 @@ static HRESULT WINAPI vector_view_QueryInterface( IVectorView_IInspectable *ifac
189189
return S_OK;
190190
}
191191

192-
WARN( "%s not implemented, returning E_NOINTERFACE.\n", debugstr_guid( iid ) );
192+
FIXME( "%s not implemented, returning E_NOINTERFACE.\n", debugstr_guid( iid ) );
193193
*out = NULL;
194194
return E_NOINTERFACE;
195195
}
@@ -384,7 +384,7 @@ static HRESULT WINAPI vector_QueryInterface( IVector_IInspectable *iface, REFIID
384384
return S_OK;
385385
}
386386

387-
WARN( "%s not implemented, returning E_NOINTERFACE.\n", debugstr_guid( iid ) );
387+
FIXME( "%s not implemented, returning E_NOINTERFACE.\n", debugstr_guid( iid ) );
388388
*out = NULL;
389389
return E_NOINTERFACE;
390390
}

0 commit comments

Comments
 (0)