diff options
Diffstat (limited to 'src/xine-engine/post.h')
-rw-r--r-- | src/xine-engine/post.h | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/src/xine-engine/post.h b/src/xine-engine/post.h index 6186f31e0..006daa20c 100644 --- a/src/xine-engine/post.h +++ b/src/xine-engine/post.h @@ -54,16 +54,17 @@ struct post_class_s { xine_audio_port_t **audio_target, xine_video_port_t **video_target); - /* - * return short, human readable identifier for this plugin class + /** + * @brief short human readable identifier for this plugin class */ - char* (*get_identifier) (post_class_t *this); + const char *identifier; - /* - * return human readable (verbose = 1 line) description for - * this plugin class + /** + * @brief human readable (verbose = 1 line) description for this plugin class + * + * The description is passed to gettext() to internationalise. */ - char* (*get_description) (post_class_t *this); + const char *description; /* * free all class-related resources |