Skip to content

Commit

Permalink
struct is specific to joint2 - move
Browse files Browse the repository at this point in the history
  • Loading branch information
starseeker committed Nov 26, 2024
1 parent a3e2bc2 commit 69c3544
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
11 changes: 0 additions & 11 deletions src/libged/ged_private.h
Original file line number Diff line number Diff line change
Expand Up @@ -161,17 +161,6 @@ struct ged_solid_data {
struct bview *v;
};

struct _ged_funtab {
char *ft_name;
char *ft_parms;
char *ft_comment;
int (*ft_func)(void);
int ft_min;
int ft_max;
int tcl_converted;
};


struct _ged_id_names {
struct bu_list l;
struct bu_vls name; /**< name associated with region id */
Expand Down
11 changes: 11 additions & 0 deletions src/libged/joint2/joint2.c
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,17 @@

#include "../ged_private.h"

struct _ged_funtab {
char *ft_name;
char *ft_parms;
char *ft_comment;
int (*ft_func)(void);
int ft_min;
int ft_max;
int tcl_converted;
};


static struct _ged_funtab joint_subcommand_table[] = {
{"joint ", "", "Joint command table", NULL, 0, 0, FALSE},
{"?", "[commands]", "summary of available joint commands", NULL, 0, _GED_FUNTAB_UNLIMITED, FALSE},
Expand Down

0 comments on commit 69c3544

Please sign in to comment.