* Add license header

This commit is contained in:
Michaël Van Canneyt 2024-09-08 10:58:01 +02:00
parent e9df862a56
commit 87631018bc
5 changed files with 74 additions and 0 deletions

View File

@ -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}

View File

@ -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}

View File

@ -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}

View File

@ -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}

View File

@ -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+}