summaryrefslogtreecommitdiff
path: root/fluid/rsrcs/comments.h
diff options
context:
space:
mode:
authorMatthias Melcher <github@matthiasm.com>2025-03-07 16:34:35 +0100
committerMatthias Melcher <github@matthiasm.com>2025-03-07 16:34:48 +0100
commit1985aefc0e502048f92b91beef87c0dfbe669fed (patch)
treeaf62874def4590e437a47784b4428d975ceb262f /fluid/rsrcs/comments.h
parent42a04c064d4b31c3a85210311f3ada163c406a25 (diff)
Restructuring Fluid source files.
Diffstat (limited to 'fluid/rsrcs/comments.h')
-rw-r--r--fluid/rsrcs/comments.h65
1 files changed, 65 insertions, 0 deletions
diff --git a/fluid/rsrcs/comments.h b/fluid/rsrcs/comments.h
new file mode 100644
index 000000000..85f3376b8
--- /dev/null
+++ b/fluid/rsrcs/comments.h
@@ -0,0 +1,65 @@
+
+static const char * const comment_text[] = {
+ // GNU Public License/GPL Header
+ "//\n"
+ "// NameOfProgram, ShortDescription\n"
+ "// Copyright (C) YYYY NameOfAuthor\n"
+ "//\n"
+ "// This program is free software: you can redistribute it and/or\n"
+ "// modify it under the terms of the GNU General Public License\n"
+ "// as published by the Free Software Foundation, either version 3\n"
+ "// of the License, or (at your option) any later version.\n"
+ "//\n"
+ "// This program is distributed in the hope that it will be useful,\n"
+ "// but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
+ "// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
+ "// GNU General Public License for more details.\n"
+ "//\n"
+ "// You should have received a copy of the GNU General Public License\n"
+ "// along with this program. If not, see <https://www.gnu.org/licenses/>.\n"
+ "//\n",
+ // GNU Public License/GPL Footer
+ "\n//\n"
+ "// NameOfProgram, ShortDescription\n"
+ "// Copyright (C) YYYY NameOfAuthor\n"
+ "//",
+ // GNU Public License/LGPL Header
+ "//\n"
+ "// NameOfLibrary, ShortDescription\n"
+ "// Copyright (C) YYYY NameOfAuthor\n"
+ "//\n"
+ "// This library is free software: you can redistribute it and/or\n"
+ "// modify it under the terms of the GNU Lesser General Public License\n"
+ "// as published by the Free Software Foundation, either version 3\n"
+ "// of the License, or (at your option) any later version.\n"
+ "//\n"
+ "// This library is distributed in the hope that it will be useful,\n"
+ "// but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
+ "// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
+ "// GNU Lesser General Public License for more details.\n"
+ "//\n"
+ "// You should have received a copy of the GNU Lesser General Public License\n"
+ "// along with this library. If not, see <https://www.gnu.org/licenses/>.\n"
+ "//\n",
+ // GNU Public License/LGPL Footer
+ "\n//\n"
+ "// NameOfLibrary, ShortDescription\n"
+ "// Copyright (C) YYYY NameOfAuthor\n"
+ "//",
+ // FLTK/Header
+ "//\n"
+ "// ... for the Fast Light Tool Kit (FLTK).\n"
+ "//\n"
+ "// Copyright 1998-2023 by Bill Spitzak and others.\n"
+ "//\n"
+ "// This library is free software. Distribution and use rights are outlined in\n"
+ "// the file \"COPYING\" which should have been included with this file. If this\n"
+ "// file is missing or damaged, see the license at:\n"
+ "//\n"
+ "// https://www.fltk.org/COPYING.php\n"
+ "//\n"
+ "// Please see the following page on how to report bugs and issues:\n"
+ "//\n"
+ "// https://www.fltk.org/bugs.php\n"
+ "//\n"
+ };