From 9e49e923bbe76d447f1b78934a316bd6540c28cf Mon Sep 17 00:00:00 2001 From: Lily Date: Thu, 14 Nov 2024 19:08:58 +0300 Subject: [PATCH] license some classes --- source/android/PsychJNI.hx | 21 +++++++++++++++-- source/mobile/CopyState.hx | 23 +++++++++++++++++++ .../mobile/options/MobileOptionsSubState.hx | 23 +++++++++++++++++++ 3 files changed, 65 insertions(+), 2 deletions(-) diff --git a/source/android/PsychJNI.hx b/source/android/PsychJNI.hx index 7361aa7d30f..10703c1b157 100644 --- a/source/android/PsychJNI.hx +++ b/source/android/PsychJNI.hx @@ -1,6 +1,23 @@ /* - The functions "maybe" needs to be added: messageboxShowMessageBox - NOTE: THESE AT "SDLActivity"!! + * Copyright (C) 2024 Mobile Porting Team + * + * Permission is hereby granted, free of charge, to any person obtaining a + * copy of this software and associated documentation files (the "Software"), + * to deal in the Software without restriction, including without limitation + * the rights to use, copy, modify, merge, publish, distribute, sublicense, + * and/or sell copies of the Software, and to permit persons to whom the + * Software is furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + * DEALINGS IN THE SOFTWARE. */ package android; diff --git a/source/mobile/CopyState.hx b/source/mobile/CopyState.hx index 40f43824f62..02bb74a52c9 100644 --- a/source/mobile/CopyState.hx +++ b/source/mobile/CopyState.hx @@ -1,3 +1,26 @@ +/* + * Copyright (C) 2024 Mobile Porting Team + * + * Permission is hereby granted, free of charge, to any person obtaining a + * copy of this software and associated documentation files (the "Software"), + * to deal in the Software without restriction, including without limitation + * the rights to use, copy, modify, merge, publish, distribute, sublicense, + * and/or sell copies of the Software, and to permit persons to whom the + * Software is furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + * DEALINGS IN THE SOFTWARE. + */ + + package mobile; #if mobile diff --git a/source/mobile/options/MobileOptionsSubState.hx b/source/mobile/options/MobileOptionsSubState.hx index 0fa6b8219b4..104afb3e1d6 100644 --- a/source/mobile/options/MobileOptionsSubState.hx +++ b/source/mobile/options/MobileOptionsSubState.hx @@ -1,3 +1,26 @@ +/* + * Copyright (C) 2024 Mobile Porting Team + * + * Permission is hereby granted, free of charge, to any person obtaining a + * copy of this software and associated documentation files (the "Software"), + * to deal in the Software without restriction, including without limitation + * the rights to use, copy, modify, merge, publish, distribute, sublicense, + * and/or sell copies of the Software, and to permit persons to whom the + * Software is furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + * DEALINGS IN THE SOFTWARE. + */ + + package mobile.options; import options.BaseOptionsMenu;