From a7aae598a7b8767ac36bbfbace33460e80d80e2f Mon Sep 17 00:00:00 2001 From: Thibault Saunier Date: Tue, 12 Nov 2024 11:47:07 -0300 Subject: [PATCH] validate: Add license headers Part-of: --- gstreamer-validate/src/action_type.rs | 2 ++ gstreamer-validate/src/enums.rs | 2 ++ gstreamer-validate/src/reporter.rs | 2 ++ 3 files changed, 6 insertions(+) diff --git a/gstreamer-validate/src/action_type.rs b/gstreamer-validate/src/action_type.rs index ee64ce66b..f588ef2d9 100644 --- a/gstreamer-validate/src/action_type.rs +++ b/gstreamer-validate/src/action_type.rs @@ -1,3 +1,5 @@ +// Take a look at the license at the top of the repository in the LICENSE file. + use std::{ffi::c_int, ptr}; use crate::{ffi, Action}; diff --git a/gstreamer-validate/src/enums.rs b/gstreamer-validate/src/enums.rs index 7e0fdc3f9..ba65dc4ba 100644 --- a/gstreamer-validate/src/enums.rs +++ b/gstreamer-validate/src/enums.rs @@ -1,3 +1,5 @@ +// Take a look at the license at the top of the repository in the LICENSE file. + use crate::ffi; use glib::translate::*; diff --git a/gstreamer-validate/src/reporter.rs b/gstreamer-validate/src/reporter.rs index f2c624d45..8b66a5376 100644 --- a/gstreamer-validate/src/reporter.rs +++ b/gstreamer-validate/src/reporter.rs @@ -1,3 +1,5 @@ +// Take a look at the license at the top of the repository in the LICENSE file. + use glib::translate::*; use crate::action::Action;