Plugins are now called upon beginning, end or invocation of functions

This commit is contained in:
Pierre Pronchery 2008-06-03 08:49:33 +00:00
parent 0fa38ff4c9
commit 5d68cc5a47

View File

@ -31,7 +31,9 @@ typedef struct _TargetPlugin
int (*init)(char const * outfile, int optlevel);
int (*exit)(void);
int (*section)(char const * name);
int (*function)(char const * name);
int (*function_begin)(char const * name);
int (*function_call)(char const * name);
int (*function_end)(void);
} TargetPlugin;
#endif /* !_C99_TARGET_TARGET_H */