Skip to content
Snippets Groups Projects
Commit 413dde22 authored by slevy's avatar slevy
Browse files

Add struct parser for generic add-on commands.

parent b62b0d95
No related branches found
No related tags found
No related merge requests found
......@@ -91,6 +91,14 @@ struct _ppui {
Fl_Plot* hrdiag;
};
struct parser {
int (*parsefunc)( struct stuff **stp, int argc, char *argv[], void *etc );
char *whose; // name
void *etc; // client data
struct parser *next;
};
extern struct parser *parsers;
extern struct _ppui ppui;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment