Skip to content

Commit

Permalink
Add html help for module descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
caprica committed Feb 3, 2024
1 parent ba4e834 commit 6dfc5d4
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,15 @@ public class libvlc_module_description_t extends Structure {
/**
*
*/
private static final List<String> FIELD_ORDER = Collections.unmodifiableList(Arrays.asList("psz_name", "psz_shortname", "psz_longname", "psz_help", "p_next"));
private static final List<String> FIELD_ORDER = Collections.unmodifiableList(Arrays.asList("psz_name", "psz_shortname", "psz_longname", "psz_help", "psz_help_html", "p_next"));

public static class ByReference extends libvlc_module_description_t implements Structure.ByReference {}

public String psz_name;
public String psz_shortname;
public String psz_longname;
public String psz_help;
public String psz_help_html;
public libvlc_module_description_t.ByReference p_next;

@Override
Expand Down

0 comments on commit 6dfc5d4

Please sign in to comment.