freetype-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Devel] The FT_Open_Args parameter to FT_Open_Face should be const


From: Graham Asher
Subject: [Devel] The FT_Open_Args parameter to FT_Open_Face should be const
Date: Wed, 2 Oct 2002 19:06:07 +0100

The function

  FT_EXPORT( FT_Error )
  FT_Open_Face( FT_Library     library,
                FT_Open_Args*  args,
                FT_Long        face_index,
                FT_Face       *aface );

should I think be

  FT_EXPORT( FT_Error )
  FT_Open_Face( FT_Library     library,
                const FT_Open_Args*  args,
                FT_Long        face_index,
                FT_Face       *aface );

I don't see any good reason for "args" being non-const.

Graham Asher




reply via email to

[Prev in Thread] Current Thread [Next in Thread]