A bit of refactoring to be able to find some issue...

This commit is contained in:
Krom, Robertus 2020-02-18 16:32:51 +01:00
commit 42cd533862
308 changed files with 2705 additions and 2454 deletions

View file

@ -21,21 +21,10 @@
using System;
using System.Runtime.InteropServices;
using System.Text;
using GreenshotPlugin.UnmanagedHelpers.Enums;
namespace GreenshotPlugin.UnmanagedHelpers {
[Flags]
public enum ThreadAccess : int {
TERMINATE = (0x0001),
SUSPEND_RESUME = (0x0002),
GET_CONTEXT = (0x0008),
SET_CONTEXT = (0x0010),
SET_INFORMATION = (0x0020),
QUERY_INFORMATION = (0x0040),
SET_THREAD_TOKEN = (0x0080),
IMPERSONATE = (0x0100),
DIRECT_IMPERSONATION = (0x0200)
}
/// <summary>
/// <summary>
/// Description of Kernel32.
/// </summary>
public class Kernel32 {