Anton Baskanov (@baskanov) commented about dlls/amstream/ddrawstream.c:
+static ULONG WINAPI ddraw_mem_allocator_AddRef(IMemAllocator *iface) +{
- struct ddraw_stream *stream = impl_from_IMemAllocator(iface);
- return IAMMediaStream_AddRef(&stream->IAMMediaStream_iface);
+}
+static ULONG WINAPI ddraw_mem_allocator_Release(IMemAllocator *iface) +{
- struct ddraw_stream *stream = impl_from_IMemAllocator(iface);
- return IAMMediaStream_Release(&stream->IAMMediaStream_iface);
+}
+static HRESULT WINAPI ddraw_mem_allocator_SetProperties(IMemAllocator *iface, ALLOCATOR_PROPERTIES *request, ALLOCATOR_PROPERTIES *actual) +{
- return E_NOTIMPL;
Please add `FIXME()`s to the stub functions: ```suggestion:-0+0 FIXME("iface %p, request %p, actual %p, stub!\n"); return E_NOTIMPL; ```