]> git.sesse.net Git - movit/blob - defs.h
Rework PaddingEffect alpha handling, which also fixes a long-standing assertion failure.
[movit] / defs.h
1 #ifndef _MOVIT_DEFS_H
2 #define _MOVIT_DEFS_H
3
4 // Utility macros that are useful from other header files.
5
6 #ifdef __GNUC__
7 #define MUST_CHECK_RESULT __attribute__((warn_unused_result))
8 #else
9 #define MUST_CHECK_RESULT 
10 #endif
11
12 #endif  // !defined(_MOVIT_DEFS_H)