Re: [7/10] [try 2] comctl32: Add basic structure for IImageList interface

2009-08-11 Thread Henri Verbeet
2009/8/11 Owen Rudge oru...@codeweavers.com: +static const IImageListVtbl ImageListImpl_Vtbl = { +ImageListImpl_QueryInterface, +ImageListImpl_AddRef, +ImageListImpl_Release +}; You can't do that, you need to at least implement stubs for the other methods.

Re: [7/10] [try 2] comctl32: Add basic structure for IImageList interface

2009-08-11 Thread Owen Rudge
You can't do that, you need to at least implement stubs for the other methods. This is something I did in the following patch, mainly to reduce the size of the individual patches (based on the assumption all the patches would be committed at once anyway). I will recombine the patches into a

Re: [7/10] [try 2] comctl32: Add basic structure for IImageList interface

2009-08-11 Thread Henri Verbeet
2009/8/11 Owen Rudge o...@owenrudge.net: You can't do that, you need to at least implement stubs for the other methods. This is something I did in the following patch, mainly to reduce the size of the individual patches (based on the assumption all the patches would be committed at once