Browse Source

* Add license header

Michaël Van Canneyt 11 months ago
parent
commit
87631018bc

+ 15 - 0
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 [email protected]
+
+    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;
 program regexphost;
 
 
 {$mode objfpc}
 {$mode objfpc}

+ 15 - 0
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 [email protected]
+
+    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;
 program wasmwebsocket;
 
 
 {$mode objfpc}
 {$mode objfpc}

+ 15 - 0
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 [email protected]
+
+    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;
 unit wasm.pas2js.regexp;
 
 
 {$mode ObjFPC}
 {$mode ObjFPC}

+ 15 - 0
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 [email protected]
+
+    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;
 unit wasm.pas2js.websocketapi;
 
 
 {$mode ObjFPC}
 {$mode ObjFPC}

+ 14 - 0
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 [email protected]
+
+    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;
 unit wasm.regexp.shared;
 
 
 {$mode ObjFPC}{$H+}
 {$mode ObjFPC}{$H+}