<br><br><div class="gmail_quote">2012/3/14 Alexandre Julliard <span dir="ltr"><<a href="mailto:julliard@winehq.org">julliard@winehq.org</a>></span><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div class="im">Christian Costa <<a href="mailto:titan.costa@gmail.com">titan.costa@gmail.com</a>> writes:<br>
<br>
> @@ -438,7 +438,7 @@ static HRESULT WINAPI IDirect3DRMMeshBuilder2Impl_Load(IDirect3DRMMeshBuilder2*<br>
>  {<br>
>      IDirect3DRMMeshBuilderImpl *This = impl_from_IDirect3DRMMeshBuilder2(iface);<br>
><br>
> -    TRACE("(%p)->(%p,%p,%x,%p,%p): partial stub\n", This, filename, name, loadflags, cb, arg);<br>
> +    TRACE("(%p)->(%p,%p,%x,%p,%p): forwarding to IDirect3DRMMeshBuilder3\n", This, filename, name, loadflags, cb, arg);<br>
><br>
>      return IDirect3DRMMeshBuilder3_Load(&This->IDirect3DRMMeshBuilder3_iface, filename, name,<br>
>                                          loadflags, (D3DRMLOADTEXTURE3CALLBACK)cb, arg);<br>
<br>
</div>I don't think that's an improvement. "Partial stub" makes a lot more<br>
sense for someone not deeply familiar with the code.<br>
<font color="#888888"></font><br></blockquote></div><br>We forward the method to it's implementation in another interface which is a "partial stub" (in reality it is more a "partial implementation" as you will see in next patches).<br>
>From the log we can see a method redirected from interface 2 to interface 3 and then that the method is implemented as "partial stub".<br>Without the patches I see in the log a partial stub from a trace followed by a partial stub from a fixme. That's confusing.<br>
I don't see your point with someone novice in this area. Could you elaborate?<br><br><br>