From a1fe2a71c576627e30d02a0b9d414081af157cef Mon Sep 17 00:00:00 2001 From: Yan Maniez Date: Tue, 30 Apr 2019 23:37:14 +0200 Subject: [PATCH] Pour compil gtk --- AideDeJeu/AideDeJeu.GTK/NativeAPI.cs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/AideDeJeu/AideDeJeu.GTK/NativeAPI.cs b/AideDeJeu/AideDeJeu.GTK/NativeAPI.cs index defa1afa..f9150e4e 100644 --- a/AideDeJeu/AideDeJeu.GTK/NativeAPI.cs +++ b/AideDeJeu/AideDeJeu.GTK/NativeAPI.cs @@ -36,5 +36,20 @@ namespace AideDeJeu.GTK var path = AppDomain.CurrentDomain.BaseDirectory; // System.Reflection.Assembly.GetExecutingAssembly().CodeBase; return Path.Combine(path, $"{databaseName}.db"); } + + public Task SaveStreamAsync(string filename, Stream stream) + { + throw new NotImplementedException(); + } + + public Stream CreateStream(string filename) + { + throw new NotImplementedException(); + } + + public Task LaunchFileAsync(string title, string message, string filePath) + { + throw new NotImplementedException(); + } } } \ No newline at end of file