Nikolay Sivov <[email protected]> wrote: > +static IDWriteFontVtbl dwritefontvtbl = { > + dwritefont_QueryInterface, > + dwritefont_AddRef, > + dwritefont_Release,
Vtables should be 'const' (here and in other places). -- Dmitry.
Nikolay Sivov <[email protected]> wrote: > +static IDWriteFontVtbl dwritefontvtbl = { > + dwritefont_QueryInterface, > + dwritefont_AddRef, > + dwritefont_Release,
Vtables should be 'const' (here and in other places). -- Dmitry.