summaryrefslogtreecommitdiffstats
path: root/input
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2016-03-15 22:44:15 +0100
committerwm4 <wm4@nowhere>2016-03-15 22:44:15 +0100
commit95c09fa93b17e7387998a3a5ca05f11ad00b1b5f (patch)
tree394ff12a1e75186444d811e9d6b1072bfe6bee5d /input
parentcd706658034e67208705a9baa886ebc018de9326 (diff)
downloadmpv-95c09fa93b17e7387998a3a5ca05f11ad00b1b5f.tar.bz2
mpv-95c09fa93b17e7387998a3a5ca05f11ad00b1b5f.tar.xz
input/event.h: add include guard
Diffstat (limited to 'input')
-rw-r--r--input/event.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/input/event.h b/input/event.h
index cf8e35ac8d..1e2149bb89 100644
--- a/input/event.h
+++ b/input/event.h
@@ -14,6 +14,8 @@
* You should have received a copy of the GNU Lesser General Public
* License along with mpv. If not, see <http://www.gnu.org/licenses/>.
*/
+#ifndef MP_INPUT_EVENT_H_
+#define MP_INPUT_EVENT_H_
#include "misc/bstr.h"
@@ -37,3 +39,5 @@ int mp_event_drop_mime_data(struct input_ctx *ictx, const char *mime_type,
// whether a type is preferred (higher integer score), or supported (scores
// below 0 indicate unsupported types).
int mp_event_get_mime_type_score(struct input_ctx *ictx, const char *mime_type);
+
+#endif