2009/8/10 Owen Rudge orudge@codeweavers.com:
+cpp_quote("#define ILIF_ALPHA 0x00000001")
You don't need cpp_quote here, you can just do something like "const UINT ILIF_ALPHA = 1;"
+interface IImageList : IUnknown
...
+};
While valid, you don't need the ; here.