logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

XmFontListNextEntry — A font list function that returns the next entry in a font list

Description

XmFontListNextEntry  returns  the  next  entry   in   the   font   list.   The   application   uses   the
       XmFontListInitFontContext  routine  to  create a font list context. The first call to XmFontListNextEntry
       sets the context to the first entry in the font list.  The  application  then  calls  XmFontListNextEntry
       repeatedly  with  the  same  context. Each succeeding call accesses the next entry of the font list. When
       finished, the application calls XmFontListFreeFontContext to free the allocated font list context.

       context   Specifies the font list context

Name

XmFontListNextEntry   —   A   font   list   function   that  returns  the  next  entry  in  a  font  list
       "XmFontListNextEntry" "font list functions" "XmFontListNextEntry"

Return

       Returns NULL if the context does not refer to a valid entry or if it is at the  end  of  the  font  list;
       otherwise,  it  returns  a font list entry.  If the function does return a font list entry, the font list
       entry is not a copy. Therefore, the application should not free the returned font list entry.

Synopsis

       #include <Xm/Xm.h>
       XmFontListEntryXmFontListNextEntry(
       XmFontContextcontext);

See Also