finish LastResort

This commit is contained in:
Paddy Xu
2017-04-24 22:17:46 +03:00
parent 431cf1f014
commit 5e70b0052f
16 changed files with 1359 additions and 1031 deletions

View File

@@ -2,6 +2,7 @@
using System.Drawing;
using System.IO;
using System.Runtime.InteropServices;
// ReSharper disable InconsistentNaming
namespace QuickLook.Plugin.LastResort
@@ -211,8 +212,8 @@ namespace QuickLook.Plugin.LastResort
[StructLayout(LayoutKind.Sequential)]
public struct POINT
{
private int X;
private int Y;
private readonly int X;
private readonly int Y;
public POINT(int x, int y)
{