talons

Fork of Claws Mail https://www.claws-mail
Log | Files | Refs | README | LICENSE

commit d28575b79c20d7f2e8eed9c1981abb33f88a7b01
parent 4e1163d87da4ef8986f505e7837eb0af01a09594
Author: Ricardo Mones <ricardo@mones.org>
Date:   Fri, 27 Jun 2014 22:19:00 +0200

Add missing copyrights in tnef_parse plugin

Diffstat:
Msrc/plugins/tnef_parse/mapi.h | 22++++++++++++++++++++++
Msrc/plugins/tnef_parse/mapidefs.h | 22++++++++++++++++++++++
Msrc/plugins/tnef_parse/mapitags.h | 22++++++++++++++++++++++
Msrc/plugins/tnef_parse/tnef-errors.h | 22++++++++++++++++++++++
Msrc/plugins/tnef_parse/tnef-types.h | 22++++++++++++++++++++++
Msrc/plugins/tnef_parse/ytnef.h | 22++++++++++++++++++++++
6 files changed, 132 insertions(+), 0 deletions(-)

diff --git a/src/plugins/tnef_parse/mapi.h b/src/plugins/tnef_parse/mapi.h @@ -1,3 +1,25 @@ +/* +* Claws Mail -- a GTK+ based, lightweight, and fast e-mail client +* Copyright (C) 2004-2014 Colin Leroy and the Claws Mail team +* +* Yerase's TNEF Stream Reader Library +* Copyright (C) 2003 Randall E. Hand +* +* This program is free software; you can redistribute it and/or modify +* it under the terms of the GNU General Public License as published by +* the Free Software Foundation; either version 3 of the License, or +* (at your option) any later version. +* +* This program is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with this program. If not, see <http://www.gnu.org/licenses/>. +* +* You can contact me at randall.hand@gmail.com for questions or assistance +*/ #define MV_FLAG 0x1000 /* Multi-value flag */ #define PT_UNSPECIFIED ((ULONG) 0) /* (Reserved for interface use) type doesn't matter to caller */ diff --git a/src/plugins/tnef_parse/mapidefs.h b/src/plugins/tnef_parse/mapidefs.h @@ -1,3 +1,25 @@ +/* +* Claws Mail -- a GTK+ based, lightweight, and fast e-mail client +* Copyright (C) 2004-2014 Colin Leroy and the Claws Mail team +* +* Yerase's TNEF Stream Reader Library +* Copyright (C) 2003 Randall E. Hand +* +* This program is free software; you can redistribute it and/or modify +* it under the terms of the GNU General Public License as published by +* the Free Software Foundation; either version 3 of the License, or +* (at your option) any later version. +* +* This program is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with this program. If not, see <http://www.gnu.org/licenses/>. +* +* You can contact me at randall.hand@gmail.com for questions or assistance +*/ #ifndef MAPIDEFS_H #define MAPIDEFS_H diff --git a/src/plugins/tnef_parse/mapitags.h b/src/plugins/tnef_parse/mapitags.h @@ -1,3 +1,25 @@ +/* +* Claws Mail -- a GTK+ based, lightweight, and fast e-mail client +* Copyright (C) 2004-2014 Colin Leroy and the Claws Mail team +* +* Yerase's TNEF Stream Reader Library +* Copyright (C) 2003 Randall E. Hand +* +* This program is free software; you can redistribute it and/or modify +* it under the terms of the GNU General Public License as published by +* the Free Software Foundation; either version 3 of the License, or +* (at your option) any later version. +* +* This program is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with this program. If not, see <http://www.gnu.org/licenses/>. +* +* You can contact me at randall.hand@gmail.com for questions or assistance +*/ #ifndef MAPITAGS_H #define MAPITAGS_H diff --git a/src/plugins/tnef_parse/tnef-errors.h b/src/plugins/tnef_parse/tnef-errors.h @@ -1,3 +1,25 @@ +/* +* Claws Mail -- a GTK+ based, lightweight, and fast e-mail client +* Copyright (C) 2004-2014 Colin Leroy and the Claws Mail team +* +* Yerase's TNEF Stream Reader Library +* Copyright (C) 2003 Randall E. Hand +* +* This program is free software; you can redistribute it and/or modify +* it under the terms of the GNU General Public License as published by +* the Free Software Foundation; either version 3 of the License, or +* (at your option) any later version. +* +* This program is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with this program. If not, see <http://www.gnu.org/licenses/>. +* +* You can contact me at randall.hand@gmail.com for questions or assistance +*/ #ifndef _TNEF_ERRORS_ #define _TNEF_ERRORS_ diff --git a/src/plugins/tnef_parse/tnef-types.h b/src/plugins/tnef_parse/tnef-types.h @@ -1,3 +1,25 @@ +/* +* Claws Mail -- a GTK+ based, lightweight, and fast e-mail client +* Copyright (C) 2004-2014 Colin Leroy and the Claws Mail team +* +* Yerase's TNEF Stream Reader Library +* Copyright (C) 2003 Randall E. Hand +* +* This program is free software; you can redistribute it and/or modify +* it under the terms of the GNU General Public License as published by +* the Free Software Foundation; either version 3 of the License, or +* (at your option) any later version. +* +* This program is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with this program. If not, see <http://www.gnu.org/licenses/>. +* +* You can contact me at randall.hand@gmail.com for questions or assistance +*/ #ifndef _TNEF_TYPES_H_ #define _TNEF_TYPES_H_ diff --git a/src/plugins/tnef_parse/ytnef.h b/src/plugins/tnef_parse/ytnef.h @@ -1,3 +1,25 @@ +/* +* Claws Mail -- a GTK+ based, lightweight, and fast e-mail client +* Copyright (C) 2004-2014 Colin Leroy and the Claws Mail team +* +* Yerase's TNEF Stream Reader Library +* Copyright (C) 2003 Randall E. Hand +* +* This program is free software; you can redistribute it and/or modify +* it under the terms of the GNU General Public License as published by +* the Free Software Foundation; either version 3 of the License, or +* (at your option) any later version. +* +* This program is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with this program. If not, see <http://www.gnu.org/licenses/>. +* +* You can contact me at randall.hand@gmail.com for questions or assistance +*/ #ifndef _TNEF_PROCS_H_ #define _TNEF_PROCS_H_