implement first Electron-API Bridge functions - Add little sample in WebApp

This commit is contained in:
Gregor Biswanger
2017-10-12 02:24:27 +02:00
parent 6020369892
commit 5f0be6543b
13 changed files with 206 additions and 9 deletions

View File

@@ -0,0 +1,24 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace ElectronNET.API.Entities
{
public enum PathName
{
home,
appData,
userData,
temp,
exe,
module,
desktop,
documents,
downloads,
music,
pictures,
videos,
logs,
pepperFlashSystemPlugin
}
}

View File

@@ -0,0 +1,8 @@
namespace ElectronNET.API.Entities
{
public class RelaunchOptions
{
public string[] Args { get; set; }
public string ExecPath { get; set; }
}
}