From f0ddb097f9891640051f5252cb4d6429e77b94c0 Mon Sep 17 00:00:00 2001 From: Brandon Wright Date: Thu, 15 Nov 2018 17:42:29 -0600 Subject: [PATCH] Mark all of GTK+ with header stub, and a couple others. --- apu/hermite_resampler.h | 6 +++++- apu/ring_buffer.h | 6 +++++- gtk/src/filter_epx_unsafe.h | 6 ++++++ gtk/src/filter_xbrz.h | 6 ++++++ gtk/src/gtk_2_3_compat.h | 6 ++++++ gtk/src/gtk_binding.cpp | 6 ++++++ gtk/src/gtk_binding.h | 6 ++++++ gtk/src/gtk_builder_window.cpp | 6 ++++++ gtk/src/gtk_builder_window.h | 6 ++++++ gtk/src/gtk_cheat.cpp | 6 ++++++ gtk/src/gtk_cheat.h | 6 ++++++ gtk/src/gtk_config.cpp | 6 ++++++ gtk/src/gtk_config.h | 6 ++++++ gtk/src/gtk_control.cpp | 6 ++++++ gtk/src/gtk_control.h | 6 ++++++ gtk/src/gtk_display.cpp | 6 ++++++ gtk/src/gtk_display.h | 6 ++++++ gtk/src/gtk_display_driver.h | 6 ++++++ gtk/src/gtk_display_driver_gtk.cpp | 6 ++++++ gtk/src/gtk_display_driver_gtk.h | 6 ++++++ gtk/src/gtk_display_driver_opengl.cpp | 6 ++++++ gtk/src/gtk_display_driver_opengl.h | 6 ++++++ gtk/src/gtk_display_driver_xv.cpp | 6 ++++++ gtk/src/gtk_display_driver_xv.h | 6 ++++++ gtk/src/gtk_file.cpp | 6 ++++++ gtk/src/gtk_file.h | 6 ++++++ gtk/src/gtk_glx_context.cpp | 6 ++++++ gtk/src/gtk_glx_context.h | 6 ++++++ gtk/src/gtk_netplay.cpp | 6 ++++++ gtk/src/gtk_netplay.h | 6 ++++++ gtk/src/gtk_netplay_dialog.cpp | 6 ++++++ gtk/src/gtk_netplay_dialog.h | 6 ++++++ gtk/src/gtk_opengl_context.h | 6 ++++++ gtk/src/gtk_preferences.cpp | 6 ++++++ gtk/src/gtk_preferences.h | 6 ++++++ gtk/src/gtk_s9x.cpp | 6 ++++++ gtk/src/gtk_s9x.h | 6 ++++++ gtk/src/gtk_s9xcore.h | 6 ++++++ gtk/src/gtk_s9xwindow.cpp | 6 ++++++ gtk/src/gtk_s9xwindow.h | 6 ++++++ gtk/src/gtk_shader_parameters.cpp | 6 ++++++ gtk/src/gtk_shader_parameters.h | 6 ++++++ gtk/src/gtk_sound.cpp | 6 ++++++ gtk/src/gtk_sound.h | 6 ++++++ gtk/src/gtk_sound_driver.h | 6 ++++++ gtk/src/gtk_sound_driver_alsa.cpp | 6 ++++++ gtk/src/gtk_sound_driver_alsa.h | 6 ++++++ gtk/src/gtk_sound_driver_oss.cpp | 6 ++++++ gtk/src/gtk_sound_driver_oss.h | 6 ++++++ gtk/src/gtk_sound_driver_portaudio.cpp | 6 ++++++ gtk/src/gtk_sound_driver_portaudio.h | 6 ++++++ gtk/src/gtk_sound_driver_pulse.cpp | 6 ++++++ gtk/src/gtk_sound_driver_pulse.h | 6 ++++++ gtk/src/gtk_sound_driver_sdl.cpp | 6 ++++++ gtk/src/gtk_sound_driver_sdl.h | 6 ++++++ gtk/src/gtk_wayland_egl_context.cpp | 6 ++++++ gtk/src/gtk_wayland_egl_context.h | 7 ++++++- gtk/src/sourcify.c | 6 ++++++ shaders/glsl.cpp | 6 ++++++ shaders/glsl.h | 8 +++++++- shaders/shader_helpers.cpp | 6 ++++++ shaders/shader_helpers.h | 6 ++++++ shaders/shader_platform.h | 6 ++++++ 63 files changed, 377 insertions(+), 4 deletions(-) diff --git a/apu/hermite_resampler.h b/apu/hermite_resampler.h index bc542d93..a95723f2 100644 --- a/apu/hermite_resampler.h +++ b/apu/hermite_resampler.h @@ -1,4 +1,8 @@ -/* Simple resampler based on bsnes's ruby audio library */ +/*****************************************************************************\ + Snes9x - Portable Super Nintendo Entertainment System (TM) emulator. + This file is licensed under the Snes9x License. + For further information, consult the LICENSE file in the root directory. +\*****************************************************************************/ #ifndef __HERMITE_RESAMPLER_H #define __HERMITE_RESAMPLER_H diff --git a/apu/ring_buffer.h b/apu/ring_buffer.h index eb8cbda9..fb9cf589 100644 --- a/apu/ring_buffer.h +++ b/apu/ring_buffer.h @@ -1,4 +1,8 @@ -/* Simple byte-based ring buffer. Licensed under public domain (C) BearOso. */ +/*****************************************************************************\ + Snes9x - Portable Super Nintendo Entertainment System (TM) emulator. + This file is licensed under the Snes9x License. + For further information, consult the LICENSE file in the root directory. +\*****************************************************************************/ #ifndef __RING_BUFFER_H #define __RING_BUFFER_H diff --git a/gtk/src/filter_epx_unsafe.h b/gtk/src/filter_epx_unsafe.h index 29792035..f8ce032d 100644 --- a/gtk/src/filter_epx_unsafe.h +++ b/gtk/src/filter_epx_unsafe.h @@ -1,3 +1,9 @@ +/*****************************************************************************\ + Snes9x - Portable Super Nintendo Entertainment System (TM) emulator. + This file is licensed under the Snes9x License. + For further information, consult the LICENSE file in the root directory. +\*****************************************************************************/ + #ifndef __FILTER_EPX_UNSAFE_H #define __FILTER_EPX_UNSAFE_H diff --git a/gtk/src/filter_xbrz.h b/gtk/src/filter_xbrz.h index 971e7e1d..3e48467b 100644 --- a/gtk/src/filter_xbrz.h +++ b/gtk/src/filter_xbrz.h @@ -1,3 +1,9 @@ +/*****************************************************************************\ + Snes9x - Portable Super Nintendo Entertainment System (TM) emulator. + This file is licensed under the Snes9x License. + For further information, consult the LICENSE file in the root directory. +\*****************************************************************************/ + #ifndef _filter_xbrz_h_ #define _filter_xbrz_h_ diff --git a/gtk/src/gtk_2_3_compat.h b/gtk/src/gtk_2_3_compat.h index dda9f49b..f5295471 100644 --- a/gtk/src/gtk_2_3_compat.h +++ b/gtk/src/gtk_2_3_compat.h @@ -1,3 +1,9 @@ +/*****************************************************************************\ + Snes9x - Portable Super Nintendo Entertainment System (TM) emulator. + This file is licensed under the Snes9x License. + For further information, consult the LICENSE file in the root directory. +\*****************************************************************************/ + #ifndef __GTK_2_3_COMPAT_H #define __GTK_2_3_COMPAT_H diff --git a/gtk/src/gtk_binding.cpp b/gtk/src/gtk_binding.cpp index 78e3e1df..604029c6 100644 --- a/gtk/src/gtk_binding.cpp +++ b/gtk/src/gtk_binding.cpp @@ -1,3 +1,9 @@ +/*****************************************************************************\ + Snes9x - Portable Super Nintendo Entertainment System (TM) emulator. + This file is licensed under the Snes9x License. + For further information, consult the LICENSE file in the root directory. +\*****************************************************************************/ + #include #include #include diff --git a/gtk/src/gtk_binding.h b/gtk/src/gtk_binding.h index 4ba357b7..5dccd7d8 100644 --- a/gtk/src/gtk_binding.h +++ b/gtk/src/gtk_binding.h @@ -1,3 +1,9 @@ +/*****************************************************************************\ + Snes9x - Portable Super Nintendo Entertainment System (TM) emulator. + This file is licensed under the Snes9x License. + For further information, consult the LICENSE file in the root directory. +\*****************************************************************************/ + #ifndef __GTK_BINDING_H #define __GTK_BINDING_H diff --git a/gtk/src/gtk_builder_window.cpp b/gtk/src/gtk_builder_window.cpp index 3602e49e..15230513 100644 --- a/gtk/src/gtk_builder_window.cpp +++ b/gtk/src/gtk_builder_window.cpp @@ -1,3 +1,9 @@ +/*****************************************************************************\ + Snes9x - Portable Super Nintendo Entertainment System (TM) emulator. + This file is licensed under the Snes9x License. + For further information, consult the LICENSE file in the root directory. +\*****************************************************************************/ + #include #include #include "gtk_builder_window.h" diff --git a/gtk/src/gtk_builder_window.h b/gtk/src/gtk_builder_window.h index b6625d53..02d46c2b 100644 --- a/gtk/src/gtk_builder_window.h +++ b/gtk/src/gtk_builder_window.h @@ -1,3 +1,9 @@ +/*****************************************************************************\ + Snes9x - Portable Super Nintendo Entertainment System (TM) emulator. + This file is licensed under the Snes9x License. + For further information, consult the LICENSE file in the root directory. +\*****************************************************************************/ + #ifndef __GTK_BUILDER_WINDOW_H #define __GTK_BUILDER_WINDOW_H diff --git a/gtk/src/gtk_cheat.cpp b/gtk/src/gtk_cheat.cpp index 80edfecb..ba6c93dc 100644 --- a/gtk/src/gtk_cheat.cpp +++ b/gtk/src/gtk_cheat.cpp @@ -1,3 +1,9 @@ +/*****************************************************************************\ + Snes9x - Portable Super Nintendo Entertainment System (TM) emulator. + This file is licensed under the Snes9x License. + For further information, consult the LICENSE file in the root directory. +\*****************************************************************************/ + #include "gtk_s9xcore.h" #include "gtk_s9x.h" diff --git a/gtk/src/gtk_cheat.h b/gtk/src/gtk_cheat.h index 54ebf4ef..e85d9273 100644 --- a/gtk/src/gtk_cheat.h +++ b/gtk/src/gtk_cheat.h @@ -1,3 +1,9 @@ +/*****************************************************************************\ + Snes9x - Portable Super Nintendo Entertainment System (TM) emulator. + This file is licensed under the Snes9x License. + For further information, consult the LICENSE file in the root directory. +\*****************************************************************************/ + #ifndef __GTK_CHEAT_H #define __GTK_CHEAT_H diff --git a/gtk/src/gtk_config.cpp b/gtk/src/gtk_config.cpp index d3c3547c..1faa48c4 100644 --- a/gtk/src/gtk_config.cpp +++ b/gtk/src/gtk_config.cpp @@ -1,3 +1,9 @@ +/*****************************************************************************\ + Snes9x - Portable Super Nintendo Entertainment System (TM) emulator. + This file is licensed under the Snes9x License. + For further information, consult the LICENSE file in the root directory. +\*****************************************************************************/ + #include #include #include diff --git a/gtk/src/gtk_config.h b/gtk/src/gtk_config.h index 088ec821..524a01f4 100644 --- a/gtk/src/gtk_config.h +++ b/gtk/src/gtk_config.h @@ -1,3 +1,9 @@ +/*****************************************************************************\ + Snes9x - Portable Super Nintendo Entertainment System (TM) emulator. + This file is licensed under the Snes9x License. + For further information, consult the LICENSE file in the root directory. +\*****************************************************************************/ + #ifndef __GTK_CONFIG_H #define __GTK_CONFIG_H diff --git a/gtk/src/gtk_control.cpp b/gtk/src/gtk_control.cpp index 95d11156..f622c615 100644 --- a/gtk/src/gtk_control.cpp +++ b/gtk/src/gtk_control.cpp @@ -1,3 +1,9 @@ +/*****************************************************************************\ + Snes9x - Portable Super Nintendo Entertainment System (TM) emulator. + This file is licensed under the Snes9x License. + For further information, consult the LICENSE file in the root directory. +\*****************************************************************************/ + #include #ifdef USE_JOYSTICK # include "SDL.h" diff --git a/gtk/src/gtk_control.h b/gtk/src/gtk_control.h index 31a0e34c..aaac3feb 100644 --- a/gtk/src/gtk_control.h +++ b/gtk/src/gtk_control.h @@ -1,3 +1,9 @@ +/*****************************************************************************\ + Snes9x - Portable Super Nintendo Entertainment System (TM) emulator. + This file is licensed under the Snes9x License. + For further information, consult the LICENSE file in the root directory. +\*****************************************************************************/ + #ifndef __GTK_CONTROL_H #define __GTK_CONTROL_H diff --git a/gtk/src/gtk_display.cpp b/gtk/src/gtk_display.cpp index 2882bcd5..719b5113 100644 --- a/gtk/src/gtk_display.cpp +++ b/gtk/src/gtk_display.cpp @@ -1,3 +1,9 @@ +/*****************************************************************************\ + Snes9x - Portable Super Nintendo Entertainment System (TM) emulator. + This file is licensed under the Snes9x License. + For further information, consult the LICENSE file in the root directory. +\*****************************************************************************/ + #include "gtk_2_3_compat.h" #include diff --git a/gtk/src/gtk_display.h b/gtk/src/gtk_display.h index ab7fa1a2..6e9f25c0 100644 --- a/gtk/src/gtk_display.h +++ b/gtk/src/gtk_display.h @@ -1,3 +1,9 @@ +/*****************************************************************************\ + Snes9x - Portable Super Nintendo Entertainment System (TM) emulator. + This file is licensed under the Snes9x License. + For further information, consult the LICENSE file in the root directory. +\*****************************************************************************/ + #ifndef __GTK_DISPLAY_H #define __GTK_DISPLAY_H diff --git a/gtk/src/gtk_display_driver.h b/gtk/src/gtk_display_driver.h index 042c5017..28434d98 100644 --- a/gtk/src/gtk_display_driver.h +++ b/gtk/src/gtk_display_driver.h @@ -1,3 +1,9 @@ +/*****************************************************************************\ + Snes9x - Portable Super Nintendo Entertainment System (TM) emulator. + This file is licensed under the Snes9x License. + For further information, consult the LICENSE file in the root directory. +\*****************************************************************************/ + #ifndef __GTK_DISPLAY_DRIVER_H #define __GTK_DISPLAY_DRIVER_H diff --git a/gtk/src/gtk_display_driver_gtk.cpp b/gtk/src/gtk_display_driver_gtk.cpp index 4327341b..e6b63f15 100644 --- a/gtk/src/gtk_display_driver_gtk.cpp +++ b/gtk/src/gtk_display_driver_gtk.cpp @@ -1,3 +1,9 @@ +/*****************************************************************************\ + Snes9x - Portable Super Nintendo Entertainment System (TM) emulator. + This file is licensed under the Snes9x License. + For further information, consult the LICENSE file in the root directory. +\*****************************************************************************/ + #include "gtk_2_3_compat.h" #include #include "gtk_display.h" diff --git a/gtk/src/gtk_display_driver_gtk.h b/gtk/src/gtk_display_driver_gtk.h index b8ca97b4..d2c7ca5a 100644 --- a/gtk/src/gtk_display_driver_gtk.h +++ b/gtk/src/gtk_display_driver_gtk.h @@ -1,3 +1,9 @@ +/*****************************************************************************\ + Snes9x - Portable Super Nintendo Entertainment System (TM) emulator. + This file is licensed under the Snes9x License. + For further information, consult the LICENSE file in the root directory. +\*****************************************************************************/ + #ifndef __GTK_DISPLAY_DRIVER_GTK_H #define __GTK_DISPLAY_DRIVER_GTK_H diff --git a/gtk/src/gtk_display_driver_opengl.cpp b/gtk/src/gtk_display_driver_opengl.cpp index 33369b23..54dd63d4 100644 --- a/gtk/src/gtk_display_driver_opengl.cpp +++ b/gtk/src/gtk_display_driver_opengl.cpp @@ -1,3 +1,9 @@ +/*****************************************************************************\ + Snes9x - Portable Super Nintendo Entertainment System (TM) emulator. + This file is licensed under the Snes9x License. + For further information, consult the LICENSE file in the root directory. +\*****************************************************************************/ + #include "gtk_2_3_compat.h" #include #include diff --git a/gtk/src/gtk_display_driver_opengl.h b/gtk/src/gtk_display_driver_opengl.h index 4b6abea7..be295a37 100644 --- a/gtk/src/gtk_display_driver_opengl.h +++ b/gtk/src/gtk_display_driver_opengl.h @@ -1,3 +1,9 @@ +/*****************************************************************************\ + Snes9x - Portable Super Nintendo Entertainment System (TM) emulator. + This file is licensed under the Snes9x License. + For further information, consult the LICENSE file in the root directory. +\*****************************************************************************/ + #ifndef __GTK_DISPLAY_DRIVER_OPENGL_H #define __GTK_DISPLAY_DRIVER_OPENGL_H diff --git a/gtk/src/gtk_display_driver_xv.cpp b/gtk/src/gtk_display_driver_xv.cpp index 05175408..96b065e0 100644 --- a/gtk/src/gtk_display_driver_xv.cpp +++ b/gtk/src/gtk_display_driver_xv.cpp @@ -1,3 +1,9 @@ +/*****************************************************************************\ + Snes9x - Portable Super Nintendo Entertainment System (TM) emulator. + This file is licensed under the Snes9x License. + For further information, consult the LICENSE file in the root directory. +\*****************************************************************************/ + #include "gtk_2_3_compat.h" #include #include diff --git a/gtk/src/gtk_display_driver_xv.h b/gtk/src/gtk_display_driver_xv.h index b1d1a9ee..b1ea0c27 100644 --- a/gtk/src/gtk_display_driver_xv.h +++ b/gtk/src/gtk_display_driver_xv.h @@ -1,3 +1,9 @@ +/*****************************************************************************\ + Snes9x - Portable Super Nintendo Entertainment System (TM) emulator. + This file is licensed under the Snes9x License. + For further information, consult the LICENSE file in the root directory. +\*****************************************************************************/ + #ifndef __GTK_DISPLAY_DRIVER_XV_H #define __GTK_DISPLAY_DRIVER_XV_H diff --git a/gtk/src/gtk_file.cpp b/gtk/src/gtk_file.cpp index a83b031e..3c9799c2 100644 --- a/gtk/src/gtk_file.cpp +++ b/gtk/src/gtk_file.cpp @@ -1,3 +1,9 @@ +/*****************************************************************************\ + Snes9x - Portable Super Nintendo Entertainment System (TM) emulator. + This file is licensed under the Snes9x License. + For further information, consult the LICENSE file in the root directory. +\*****************************************************************************/ + #include #include diff --git a/gtk/src/gtk_file.h b/gtk/src/gtk_file.h index ca84f2db..b4f42709 100644 --- a/gtk/src/gtk_file.h +++ b/gtk/src/gtk_file.h @@ -1,3 +1,9 @@ +/*****************************************************************************\ + Snes9x - Portable Super Nintendo Entertainment System (TM) emulator. + This file is licensed under the Snes9x License. + For further information, consult the LICENSE file in the root directory. +\*****************************************************************************/ + #ifndef __GTK_FILE_H #define __GTK_FILE_H diff --git a/gtk/src/gtk_glx_context.cpp b/gtk/src/gtk_glx_context.cpp index 139983ab..4b684629 100644 --- a/gtk/src/gtk_glx_context.cpp +++ b/gtk/src/gtk_glx_context.cpp @@ -1,3 +1,9 @@ +/*****************************************************************************\ + Snes9x - Portable Super Nintendo Entertainment System (TM) emulator. + This file is licensed under the Snes9x License. + For further information, consult the LICENSE file in the root directory. +\*****************************************************************************/ + #include #include diff --git a/gtk/src/gtk_glx_context.h b/gtk/src/gtk_glx_context.h index a274773e..f9cc958a 100644 --- a/gtk/src/gtk_glx_context.h +++ b/gtk/src/gtk_glx_context.h @@ -1,3 +1,9 @@ +/*****************************************************************************\ + Snes9x - Portable Super Nintendo Entertainment System (TM) emulator. + This file is licensed under the Snes9x License. + For further information, consult the LICENSE file in the root directory. +\*****************************************************************************/ + #ifndef __GTK_GLX_CONTEXT_H #define __GTK_GLX_CONTEXT_H diff --git a/gtk/src/gtk_netplay.cpp b/gtk/src/gtk_netplay.cpp index 2572b7cb..319902dc 100644 --- a/gtk/src/gtk_netplay.cpp +++ b/gtk/src/gtk_netplay.cpp @@ -1,3 +1,9 @@ +/*****************************************************************************\ + Snes9x - Portable Super Nintendo Entertainment System (TM) emulator. + This file is licensed under the Snes9x License. + For further information, consult the LICENSE file in the root directory. +\*****************************************************************************/ + #include #include "gtk_s9x.h" diff --git a/gtk/src/gtk_netplay.h b/gtk/src/gtk_netplay.h index 60f9a311..46426da5 100644 --- a/gtk/src/gtk_netplay.h +++ b/gtk/src/gtk_netplay.h @@ -1,3 +1,9 @@ +/*****************************************************************************\ + Snes9x - Portable Super Nintendo Entertainment System (TM) emulator. + This file is licensed under the Snes9x License. + For further information, consult the LICENSE file in the root directory. +\*****************************************************************************/ + #ifndef __GTK_NETPLAY_H #define __GTK_NETPLAY_H diff --git a/gtk/src/gtk_netplay_dialog.cpp b/gtk/src/gtk_netplay_dialog.cpp index 8bfbe997..445961e3 100644 --- a/gtk/src/gtk_netplay_dialog.cpp +++ b/gtk/src/gtk_netplay_dialog.cpp @@ -1,3 +1,9 @@ +/*****************************************************************************\ + Snes9x - Portable Super Nintendo Entertainment System (TM) emulator. + This file is licensed under the Snes9x License. + For further information, consult the LICENSE file in the root directory. +\*****************************************************************************/ + #include "gtk_netplay_dialog.h" #include "gtk_s9x.h" #include "gtk_file.h" diff --git a/gtk/src/gtk_netplay_dialog.h b/gtk/src/gtk_netplay_dialog.h index 768269dd..76f7ab81 100644 --- a/gtk/src/gtk_netplay_dialog.h +++ b/gtk/src/gtk_netplay_dialog.h @@ -1,3 +1,9 @@ +/*****************************************************************************\ + Snes9x - Portable Super Nintendo Entertainment System (TM) emulator. + This file is licensed under the Snes9x License. + For further information, consult the LICENSE file in the root directory. +\*****************************************************************************/ + #ifndef __GTK_NETPLAY_DIALOG_H #define __GTK_NETPLAY_DIALOG_H diff --git a/gtk/src/gtk_opengl_context.h b/gtk/src/gtk_opengl_context.h index 7e088e17..6635b9a5 100644 --- a/gtk/src/gtk_opengl_context.h +++ b/gtk/src/gtk_opengl_context.h @@ -1,3 +1,9 @@ +/*****************************************************************************\ + Snes9x - Portable Super Nintendo Entertainment System (TM) emulator. + This file is licensed under the Snes9x License. + For further information, consult the LICENSE file in the root directory. +\*****************************************************************************/ + #ifndef __GTK_OPENGL_CONTEXT_H #define __GTK_OPENGL_CONTEXT_H diff --git a/gtk/src/gtk_preferences.cpp b/gtk/src/gtk_preferences.cpp index c414af8b..c7dd3296 100644 --- a/gtk/src/gtk_preferences.cpp +++ b/gtk/src/gtk_preferences.cpp @@ -1,3 +1,9 @@ +/*****************************************************************************\ + Snes9x - Portable Super Nintendo Entertainment System (TM) emulator. + This file is licensed under the Snes9x License. + For further information, consult the LICENSE file in the root directory. +\*****************************************************************************/ + #include #include #include "gtk_2_3_compat.h" diff --git a/gtk/src/gtk_preferences.h b/gtk/src/gtk_preferences.h index 9b104de4..72645316 100644 --- a/gtk/src/gtk_preferences.h +++ b/gtk/src/gtk_preferences.h @@ -1,3 +1,9 @@ +/*****************************************************************************\ + Snes9x - Portable Super Nintendo Entertainment System (TM) emulator. + This file is licensed under the Snes9x License. + For further information, consult the LICENSE file in the root directory. +\*****************************************************************************/ + #ifndef __GTK_PREFERENCES_H #define __GTK_PREFERENCES_H diff --git a/gtk/src/gtk_s9x.cpp b/gtk/src/gtk_s9x.cpp index fd3a7f8e..784bdb6f 100644 --- a/gtk/src/gtk_s9x.cpp +++ b/gtk/src/gtk_s9x.cpp @@ -1,3 +1,9 @@ +/*****************************************************************************\ + Snes9x - Portable Super Nintendo Entertainment System (TM) emulator. + This file is licensed under the Snes9x License. + For further information, consult the LICENSE file in the root directory. +\*****************************************************************************/ + #include #include #include "gtk_2_3_compat.h" diff --git a/gtk/src/gtk_s9x.h b/gtk/src/gtk_s9x.h index d9e3241f..33cfd97d 100644 --- a/gtk/src/gtk_s9x.h +++ b/gtk/src/gtk_s9x.h @@ -1,3 +1,9 @@ +/*****************************************************************************\ + Snes9x - Portable Super Nintendo Entertainment System (TM) emulator. + This file is licensed under the Snes9x License. + For further information, consult the LICENSE file in the root directory. +\*****************************************************************************/ + #ifndef __GTK_S9X_H #define __GTK_S9X_H diff --git a/gtk/src/gtk_s9xcore.h b/gtk/src/gtk_s9xcore.h index b7cb4aa9..764549a1 100644 --- a/gtk/src/gtk_s9xcore.h +++ b/gtk/src/gtk_s9xcore.h @@ -1,3 +1,9 @@ +/*****************************************************************************\ + Snes9x - Portable Super Nintendo Entertainment System (TM) emulator. + This file is licensed under the Snes9x License. + For further information, consult the LICENSE file in the root directory. +\*****************************************************************************/ + #ifndef __GTK_S9XCORE_H #define __GTK_S9XCORE_H diff --git a/gtk/src/gtk_s9xwindow.cpp b/gtk/src/gtk_s9xwindow.cpp index c9055704..30a90bbd 100644 --- a/gtk/src/gtk_s9xwindow.cpp +++ b/gtk/src/gtk_s9xwindow.cpp @@ -1,3 +1,9 @@ +/*****************************************************************************\ + Snes9x - Portable Super Nintendo Entertainment System (TM) emulator. + This file is licensed under the Snes9x License. + For further information, consult the LICENSE file in the root directory. +\*****************************************************************************/ + #include "gtk_2_3_compat.h" #ifdef GDK_WINDOWING_X11 #include diff --git a/gtk/src/gtk_s9xwindow.h b/gtk/src/gtk_s9xwindow.h index 742882a7..4320a66c 100644 --- a/gtk/src/gtk_s9xwindow.h +++ b/gtk/src/gtk_s9xwindow.h @@ -1,3 +1,9 @@ +/*****************************************************************************\ + Snes9x - Portable Super Nintendo Entertainment System (TM) emulator. + This file is licensed under the Snes9x License. + For further information, consult the LICENSE file in the root directory. +\*****************************************************************************/ + #ifndef __GTK_S9XWINDOW_H #define __GTK_S9XWINDOW_H diff --git a/gtk/src/gtk_shader_parameters.cpp b/gtk/src/gtk_shader_parameters.cpp index f262dfce..fa27bdd4 100644 --- a/gtk/src/gtk_shader_parameters.cpp +++ b/gtk/src/gtk_shader_parameters.cpp @@ -1,3 +1,9 @@ +/*****************************************************************************\ + Snes9x - Portable Super Nintendo Entertainment System (TM) emulator. + This file is licensed under the Snes9x License. + For further information, consult the LICENSE file in the root directory. +\*****************************************************************************/ + #include "gtk_2_3_compat.h" #include #include diff --git a/gtk/src/gtk_shader_parameters.h b/gtk/src/gtk_shader_parameters.h index a1dc9080..d3984804 100644 --- a/gtk/src/gtk_shader_parameters.h +++ b/gtk/src/gtk_shader_parameters.h @@ -1,3 +1,9 @@ +/*****************************************************************************\ + Snes9x - Portable Super Nintendo Entertainment System (TM) emulator. + This file is licensed under the Snes9x License. + For further information, consult the LICENSE file in the root directory. +\*****************************************************************************/ + #ifndef __GTK_SHADER_PARAMETERS_H #define __GTK_SHADER_PARAMETERS_H diff --git a/gtk/src/gtk_sound.cpp b/gtk/src/gtk_sound.cpp index 157155eb..bbff22db 100644 --- a/gtk/src/gtk_sound.cpp +++ b/gtk/src/gtk_sound.cpp @@ -1,3 +1,9 @@ +/*****************************************************************************\ + Snes9x - Portable Super Nintendo Entertainment System (TM) emulator. + This file is licensed under the Snes9x License. + For further information, consult the LICENSE file in the root directory. +\*****************************************************************************/ + #include #include diff --git a/gtk/src/gtk_sound.h b/gtk/src/gtk_sound.h index 0fbe4962..1ccbe6b7 100644 --- a/gtk/src/gtk_sound.h +++ b/gtk/src/gtk_sound.h @@ -1,3 +1,9 @@ +/*****************************************************************************\ + Snes9x - Portable Super Nintendo Entertainment System (TM) emulator. + This file is licensed under the Snes9x License. + For further information, consult the LICENSE file in the root directory. +\*****************************************************************************/ + #ifndef __GTK_SOUND_H #define __GTK_SOUND_H diff --git a/gtk/src/gtk_sound_driver.h b/gtk/src/gtk_sound_driver.h index 36f03268..d46cbabd 100644 --- a/gtk/src/gtk_sound_driver.h +++ b/gtk/src/gtk_sound_driver.h @@ -1,3 +1,9 @@ +/*****************************************************************************\ + Snes9x - Portable Super Nintendo Entertainment System (TM) emulator. + This file is licensed under the Snes9x License. + For further information, consult the LICENSE file in the root directory. +\*****************************************************************************/ + #ifndef __GTK_SOUND_DRIVER_H #define __GTK_SOUND_DRIVER_H diff --git a/gtk/src/gtk_sound_driver_alsa.cpp b/gtk/src/gtk_sound_driver_alsa.cpp index 2eccd1e9..e0ce454f 100644 --- a/gtk/src/gtk_sound_driver_alsa.cpp +++ b/gtk/src/gtk_sound_driver_alsa.cpp @@ -1,3 +1,9 @@ +/*****************************************************************************\ + Snes9x - Portable Super Nintendo Entertainment System (TM) emulator. + This file is licensed under the Snes9x License. + For further information, consult the LICENSE file in the root directory. +\*****************************************************************************/ + #include "gtk_s9x.h" #include "gtk_sound_driver_alsa.h" diff --git a/gtk/src/gtk_sound_driver_alsa.h b/gtk/src/gtk_sound_driver_alsa.h index 1764746a..24c7c778 100644 --- a/gtk/src/gtk_sound_driver_alsa.h +++ b/gtk/src/gtk_sound_driver_alsa.h @@ -1,3 +1,9 @@ +/*****************************************************************************\ + Snes9x - Portable Super Nintendo Entertainment System (TM) emulator. + This file is licensed under the Snes9x License. + For further information, consult the LICENSE file in the root directory. +\*****************************************************************************/ + #ifndef __GTK_SOUND_DRIVER_ALSA_H #define __GTK_SOUND_DRIVER_ALSA_H diff --git a/gtk/src/gtk_sound_driver_oss.cpp b/gtk/src/gtk_sound_driver_oss.cpp index 11bc7f31..225b63c8 100644 --- a/gtk/src/gtk_sound_driver_oss.cpp +++ b/gtk/src/gtk_sound_driver_oss.cpp @@ -1,3 +1,9 @@ +/*****************************************************************************\ + Snes9x - Portable Super Nintendo Entertainment System (TM) emulator. + This file is licensed under the Snes9x License. + For further information, consult the LICENSE file in the root directory. +\*****************************************************************************/ + #include "gtk_s9x.h" #include "gtk_sound_driver_oss.h" diff --git a/gtk/src/gtk_sound_driver_oss.h b/gtk/src/gtk_sound_driver_oss.h index 3e506fa4..7e688220 100644 --- a/gtk/src/gtk_sound_driver_oss.h +++ b/gtk/src/gtk_sound_driver_oss.h @@ -1,3 +1,9 @@ +/*****************************************************************************\ + Snes9x - Portable Super Nintendo Entertainment System (TM) emulator. + This file is licensed under the Snes9x License. + For further information, consult the LICENSE file in the root directory. +\*****************************************************************************/ + #ifndef __GTK_SOUND_DRIVER_OSS_H #define __GTK_SOUND_DRIVER_OSS_H diff --git a/gtk/src/gtk_sound_driver_portaudio.cpp b/gtk/src/gtk_sound_driver_portaudio.cpp index 99060d4d..2d0dc547 100644 --- a/gtk/src/gtk_sound_driver_portaudio.cpp +++ b/gtk/src/gtk_sound_driver_portaudio.cpp @@ -1,3 +1,9 @@ +/*****************************************************************************\ + Snes9x - Portable Super Nintendo Entertainment System (TM) emulator. + This file is licensed under the Snes9x License. + For further information, consult the LICENSE file in the root directory. +\*****************************************************************************/ + #include "gtk_s9x.h" #include "gtk_sound_driver_portaudio.h" diff --git a/gtk/src/gtk_sound_driver_portaudio.h b/gtk/src/gtk_sound_driver_portaudio.h index 7add0da1..62115069 100644 --- a/gtk/src/gtk_sound_driver_portaudio.h +++ b/gtk/src/gtk_sound_driver_portaudio.h @@ -1,3 +1,9 @@ +/*****************************************************************************\ + Snes9x - Portable Super Nintendo Entertainment System (TM) emulator. + This file is licensed under the Snes9x License. + For further information, consult the LICENSE file in the root directory. +\*****************************************************************************/ + #ifndef __GTK_SOUND_DRIVER_PORTAUDIO_H #define __GTK_SOUND_DRIVER_PORTAUDIO_H diff --git a/gtk/src/gtk_sound_driver_pulse.cpp b/gtk/src/gtk_sound_driver_pulse.cpp index 9b1fc3ba..31a2fa02 100644 --- a/gtk/src/gtk_sound_driver_pulse.cpp +++ b/gtk/src/gtk_sound_driver_pulse.cpp @@ -1,3 +1,9 @@ +/*****************************************************************************\ + Snes9x - Portable Super Nintendo Entertainment System (TM) emulator. + This file is licensed under the Snes9x License. + For further information, consult the LICENSE file in the root directory. +\*****************************************************************************/ + #include "gtk_s9x.h" #include "gtk_sound_driver_pulse.h" diff --git a/gtk/src/gtk_sound_driver_pulse.h b/gtk/src/gtk_sound_driver_pulse.h index 7e452338..2d07bb18 100644 --- a/gtk/src/gtk_sound_driver_pulse.h +++ b/gtk/src/gtk_sound_driver_pulse.h @@ -1,3 +1,9 @@ +/*****************************************************************************\ + Snes9x - Portable Super Nintendo Entertainment System (TM) emulator. + This file is licensed under the Snes9x License. + For further information, consult the LICENSE file in the root directory. +\*****************************************************************************/ + #ifndef __GTK_SOUND_DRIVER_PULSE_H #define __GTK_SOUND_DRIVER_PULSE_H diff --git a/gtk/src/gtk_sound_driver_sdl.cpp b/gtk/src/gtk_sound_driver_sdl.cpp index 46cf8ca6..7b293a87 100644 --- a/gtk/src/gtk_sound_driver_sdl.cpp +++ b/gtk/src/gtk_sound_driver_sdl.cpp @@ -1,3 +1,9 @@ +/*****************************************************************************\ + Snes9x - Portable Super Nintendo Entertainment System (TM) emulator. + This file is licensed under the Snes9x License. + For further information, consult the LICENSE file in the root directory. +\*****************************************************************************/ + #include "gtk_s9x.h" #include "gtk_sound_driver_sdl.h" diff --git a/gtk/src/gtk_sound_driver_sdl.h b/gtk/src/gtk_sound_driver_sdl.h index 78997ba7..8e9c756c 100644 --- a/gtk/src/gtk_sound_driver_sdl.h +++ b/gtk/src/gtk_sound_driver_sdl.h @@ -1,3 +1,9 @@ +/*****************************************************************************\ + Snes9x - Portable Super Nintendo Entertainment System (TM) emulator. + This file is licensed under the Snes9x License. + For further information, consult the LICENSE file in the root directory. +\*****************************************************************************/ + #ifndef __GTK_SOUND_DRIVER_SDL_H #define __GTK_SOUND_DRIVER_SDL_H diff --git a/gtk/src/gtk_wayland_egl_context.cpp b/gtk/src/gtk_wayland_egl_context.cpp index eddc71b8..e2a39516 100644 --- a/gtk/src/gtk_wayland_egl_context.cpp +++ b/gtk/src/gtk_wayland_egl_context.cpp @@ -1,3 +1,9 @@ +/*****************************************************************************\ + Snes9x - Portable Super Nintendo Entertainment System (TM) emulator. + This file is licensed under the Snes9x License. + For further information, consult the LICENSE file in the root directory. +\*****************************************************************************/ + #include #include diff --git a/gtk/src/gtk_wayland_egl_context.h b/gtk/src/gtk_wayland_egl_context.h index b2345702..295b2b7d 100644 --- a/gtk/src/gtk_wayland_egl_context.h +++ b/gtk/src/gtk_wayland_egl_context.h @@ -1,7 +1,12 @@ +/*****************************************************************************\ + Snes9x - Portable Super Nintendo Entertainment System (TM) emulator. + This file is licensed under the Snes9x License. + For further information, consult the LICENSE file in the root directory. +\*****************************************************************************/ + #ifndef __GTK_WAYLAND_EGL_CONTEXT_H #define __GTK_WAYLAND_EGL_CONTEXT_H - #include #include diff --git a/gtk/src/sourcify.c b/gtk/src/sourcify.c index 34b0b47c..f1eabb2a 100644 --- a/gtk/src/sourcify.c +++ b/gtk/src/sourcify.c @@ -1,3 +1,9 @@ +/*****************************************************************************\ + Snes9x - Portable Super Nintendo Entertainment System (TM) emulator. + This file is licensed under the Snes9x License. + For further information, consult the LICENSE file in the root directory. +\*****************************************************************************/ + #include #include diff --git a/shaders/glsl.cpp b/shaders/glsl.cpp index 9bf5fad0..b93df5f7 100644 --- a/shaders/glsl.cpp +++ b/shaders/glsl.cpp @@ -1,3 +1,9 @@ +/*****************************************************************************\ + Snes9x - Portable Super Nintendo Entertainment System (TM) emulator. + This file is licensed under the Snes9x License. + For further information, consult the LICENSE file in the root directory. +\*****************************************************************************/ + #include "glsl.h" #include "../../conffile.h" #include "shader_helpers.h" diff --git a/shaders/glsl.h b/shaders/glsl.h index 4acc9a0b..412642e1 100644 --- a/shaders/glsl.h +++ b/shaders/glsl.h @@ -1,3 +1,9 @@ +/*****************************************************************************\ + Snes9x - Portable Super Nintendo Entertainment System (TM) emulator. + This file is licensed under the Snes9x License. + For further information, consult the LICENSE file in the root directory. +\*****************************************************************************/ + #ifndef __GLSL_H #define __GLSL_H @@ -146,4 +152,4 @@ typedef struct } GLSLShader; -#endif \ No newline at end of file +#endif diff --git a/shaders/shader_helpers.cpp b/shaders/shader_helpers.cpp index ca80df7f..b84e6291 100644 --- a/shaders/shader_helpers.cpp +++ b/shaders/shader_helpers.cpp @@ -1,3 +1,9 @@ +/*****************************************************************************\ + Snes9x - Portable Super Nintendo Entertainment System (TM) emulator. + This file is licensed under the Snes9x License. + For further information, consult the LICENSE file in the root directory. +\*****************************************************************************/ + #include #include #include diff --git a/shaders/shader_helpers.h b/shaders/shader_helpers.h index 91d06744..f1b9af6b 100644 --- a/shaders/shader_helpers.h +++ b/shaders/shader_helpers.h @@ -1,3 +1,9 @@ +/*****************************************************************************\ + Snes9x - Portable Super Nintendo Entertainment System (TM) emulator. + This file is licensed under the Snes9x License. + For further information, consult the LICENSE file in the root directory. +\*****************************************************************************/ + #ifndef __SHADER_HELPERS_H #define __SHADER_HELPERS_H diff --git a/shaders/shader_platform.h b/shaders/shader_platform.h index e9a1b180..99ff58da 100644 --- a/shaders/shader_platform.h +++ b/shaders/shader_platform.h @@ -1,3 +1,9 @@ +/*****************************************************************************\ + Snes9x - Portable Super Nintendo Entertainment System (TM) emulator. + This file is licensed under the Snes9x License. + For further information, consult the LICENSE file in the root directory. +\*****************************************************************************/ + #ifndef __SHADER_PLATFORM_H #define __SHADER_PLATFORM_H