forked from alexmercerind/dart_vlc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added license segments to FFI source
- Loading branch information
1 parent
271ba18
commit 5d960f3
Showing
4 changed files
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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'; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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'; | ||
|
||
|