Mercurial > libavutil.hg
diff tree.h @ 567:bd4052d9050c libavutil
Globally rename the header inclusion guard names.
Consistently apply this rule: the guard name is obtained from the
filename by stripping the leading "lib", converting '/' and '.' to
'_' and uppercasing the resulting name. Guard names in the root
directory have to be prefixed by "FFMPEG_".
| author | stefano |
|---|---|
| date | Sun, 31 Aug 2008 07:39:47 +0000 |
| parents | ba2d05538ec1 |
| children | 5877edf05eb7 |
line wrap: on
line diff
--- a/tree.h Tue Aug 19 22:17:13 2008 +0000 +++ b/tree.h Sun Aug 31 07:39:47 2008 +0000 @@ -26,8 +26,8 @@ * @author Michael Niedermayer <michaelni@gmx.at> */ -#ifndef FFMPEG_TREE_H -#define FFMPEG_TREE_H +#ifndef AVUTIL_TREE_H +#define AVUTIL_TREE_H struct AVTreeNode; extern const int av_tree_node_size; @@ -79,4 +79,4 @@ void *av_tree_insert(struct AVTreeNode **rootp, void *key, int (*cmp)(void *key, const void *b), struct AVTreeNode **next); void av_tree_destroy(struct AVTreeNode *t); -#endif /* FFMPEG_TREE_H */ +#endif /* AVUTIL_TREE_H */
