Files
modernkeepasslib/ModernKeePassLib/Utility/GfxUtil.PCL.cs
Geoffroy BONNEVILLE 1b2007e6dd Setup solution
2019-07-25 16:39:43 +02:00

18 lines
350 B
C#

using Windows.UI.Xaml.Controls;
namespace ModernKeePassLib.Utility
{
public class GfxUtil
{
public static Image LoadImage(byte[] pb)
{
return null;
}
public static Image ScaleImage(Image m_imgOrg, int? w, int? h, ScaleTransformFlags flags)
{
return null;
}
}
}