Skip to content

Commit

Permalink
Added license segments to FFI source
Browse files Browse the repository at this point in the history
  • Loading branch information
alexmercerind committed Apr 30, 2021
1 parent 271ba18 commit 5d960f3
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 0 deletions.
10 changes: 10 additions & 0 deletions ffi/lib/dart_vlc_ffi.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/*
* dart_vlc: A media playback library for Dart & Flutter. Based on libVLC & libVLC++.
*
* Hitesh Kumar Saini, Domingo Montesdeoca Gonzalez & contributors.
* https://github.com/alexmercerind
* [email protected]
*
* GNU Lesser General Public License v2.1
*/

import 'dart:ffi';
import 'dart:isolate';

Expand Down
10 changes: 10 additions & 0 deletions ffi/lib/source/internal/dynamiclibrary.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/*
* dart_vlc: A media playback library for Dart & Flutter. Based on libVLC & libVLC++.
*
* Hitesh Kumar Saini, Domingo Montesdeoca Gonzalez & contributors.
* https://github.com/alexmercerind
* [email protected]
*
* GNU Lesser General Public License v2.1
*/

import 'dart:ffi';
import 'dart:io';
import 'package:path/path.dart' as path;
Expand Down
10 changes: 10 additions & 0 deletions ffi/lib/source/internal/typedefs/callback.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/*
* dart_vlc: A media playback library for Dart & Flutter. Based on libVLC & libVLC++.
*
* Hitesh Kumar Saini, Domingo Montesdeoca Gonzalez & contributors.
* https://github.com/alexmercerind
* [email protected]
*
* GNU Lesser General Public License v2.1
*/

import 'dart:ffi';

typedef RegisterPostCObjectCXX = Void Function(Pointer<NativeFunction<Int8 Function(Int64, Pointer<Dart_CObject>)>> functionPointer);
Expand Down
10 changes: 10 additions & 0 deletions ffi/lib/source/internal/typedefs/player.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/*
* dart_vlc: A media playback library for Dart & Flutter. Based on libVLC & libVLC++.
*
* Hitesh Kumar Saini, Domingo Montesdeoca Gonzalez & contributors.
* https://github.com/alexmercerind
* [email protected]
*
* GNU Lesser General Public License v2.1
*/

import 'dart:ffi';
import 'package:ffi/ffi.dart';

Expand Down

0 comments on commit 5d960f3

Please sign in to comment.