Mercurial > mplayer.hg
changeset 28324:36321e2ba25a
Add missing multiple inclusion guards.
author | diego |
---|---|
date | Sun, 25 Jan 2009 20:10:36 +0000 |
parents | 99c49467ebbc |
children | 21504ba0f5d3 |
files | av_opts.h |
diffstat | 1 files changed, 5 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/av_opts.h Sun Jan 25 19:58:33 2009 +0000 +++ b/av_opts.h Sun Jan 25 20:10:36 2009 +0000 @@ -19,7 +19,12 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ +#ifndef MPLAYER_AV_OPTS_H +#define MPLAYER_AV_OPTS_H + /** * Parses str and sets AVOptions in v accordingly. */ int parse_avopts(void *v, char *str); + +#endif /* MPLAYER_AV_OPTS_H */