KeePassLib finally portable (but version 2.19)

Windows Store project stub
This commit is contained in:
2017-09-11 15:13:04 +02:00
parent 9640efaa5f
commit d3a3d73491
154 changed files with 102785 additions and 787 deletions

View File

@@ -0,0 +1,49 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ModernKeePassLib.WinRTAdaptors
{
// BERT TODO: Whole class is just a non-functional stub
public struct Color
{
public byte A
{
get
{ return 255; }
}
public byte R
{
get
{
return 100;
}
}
public byte G
{
get { return 150; }
}
public byte B
{
get { return 200; }
}
public bool isEmpty
{
get { return false; }
}
public static Color Empty
{
get
{
Color abc;
return abc; }
}
}
}