From 87631018bc47d3106b9b3b84d9f301ed556a5700 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Van=20Canneyt?= Date: Sun, 8 Sep 2024 10:58:01 +0200 Subject: [PATCH] * Add license header --- demo/wasienv/regexp/regexphost.lpr | 15 +++++++++++++++ demo/wasienv/websocket/wasmwebsocket.lpr | 15 +++++++++++++++ packages/wasm-utils/src/wasm.pas2js.regexp.pas | 15 +++++++++++++++ .../wasm-utils/src/wasm.pas2js.websocketapi.pas | 15 +++++++++++++++ packages/wasm-utils/src/wasm.regexp.shared.pp | 14 ++++++++++++++ 5 files changed, 74 insertions(+) diff --git a/demo/wasienv/regexp/regexphost.lpr b/demo/wasienv/regexp/regexphost.lpr index a9f3448..a8a5cf6 100644 --- a/demo/wasienv/regexp/regexphost.lpr +++ b/demo/wasienv/regexp/regexphost.lpr @@ -1,3 +1,18 @@ +{ + This file is part of the Free Component Library + + Webassembly RegExp API - Demo program + Copyright (c) 2024 by Michael Van Canneyt michael@freepascal.org + + See the file COPYING.FPC, included in this distribution, + for details about the copyright. + + 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. + + **********************************************************************} + program regexphost; {$mode objfpc} diff --git a/demo/wasienv/websocket/wasmwebsocket.lpr b/demo/wasienv/websocket/wasmwebsocket.lpr index fbc2307..6e75017 100644 --- a/demo/wasienv/websocket/wasmwebsocket.lpr +++ b/demo/wasienv/websocket/wasmwebsocket.lpr @@ -1,3 +1,18 @@ +{ + This file is part of the Free Component Library + + Webassembly Websocket API demo. + Copyright (c) 2024 by Michael Van Canneyt michael@freepascal.org + + See the file COPYING.FPC, included in this distribution, + for details about the copyright. + + 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. + + **********************************************************************} + program wasmwebsocket; {$mode objfpc} diff --git a/packages/wasm-utils/src/wasm.pas2js.regexp.pas b/packages/wasm-utils/src/wasm.pas2js.regexp.pas index febdcd8..e28126b 100644 --- a/packages/wasm-utils/src/wasm.pas2js.regexp.pas +++ b/packages/wasm-utils/src/wasm.pas2js.regexp.pas @@ -1,3 +1,18 @@ +{ + This file is part of the Free Component Library + + Webassembly RegExp API - Provide API to webassembly program + Copyright (c) 2024 by Michael Van Canneyt michael@freepascal.org + + See the file COPYING.FPC, included in this distribution, + for details about the copyright. + + 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. + + **********************************************************************} + unit wasm.pas2js.regexp; {$mode ObjFPC} diff --git a/packages/wasm-utils/src/wasm.pas2js.websocketapi.pas b/packages/wasm-utils/src/wasm.pas2js.websocketapi.pas index 23cbb70..5459678 100644 --- a/packages/wasm-utils/src/wasm.pas2js.websocketapi.pas +++ b/packages/wasm-utils/src/wasm.pas2js.websocketapi.pas @@ -1,3 +1,18 @@ +{ + This file is part of the Free Component Library + + Webassembly Websocket API - Provide the API to a webassembly module. + Copyright (c) 2024 by Michael Van Canneyt michael@freepascal.org + + See the file COPYING.FPC, included in this distribution, + for details about the copyright. + + 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. + + **********************************************************************} + unit wasm.pas2js.websocketapi; {$mode ObjFPC} diff --git a/packages/wasm-utils/src/wasm.regexp.shared.pp b/packages/wasm-utils/src/wasm.regexp.shared.pp index 6531842..e80b4e8 100644 --- a/packages/wasm-utils/src/wasm.regexp.shared.pp +++ b/packages/wasm-utils/src/wasm.regexp.shared.pp @@ -1,3 +1,17 @@ +{ + This file is part of the Free Component Library + + Webassembly RegExp API - Shared definitions + Copyright (c) 2024 by Michael Van Canneyt michael@freepascal.org + + See the file COPYING.FPC, included in this distribution, + for details about the copyright. + + 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. + + **********************************************************************} unit wasm.regexp.shared; {$mode ObjFPC}{$H+}