Fetch the repository succeeded.
using System;
using System.Runtime.InteropServices;
namespace TxJsq
{
internal static class NativeMethods
{
[DllImport("user32.dll", CharSet = CharSet.Unicode)]
internal static extern int MessageBox(IntPtr hWnd, String text, String caption, uint type);
[DllImport("kernel32.dll")]
internal static extern IntPtr OpenProcess(uint dwDesiredAccess, bool bInheritHandle, int dwProcessId);
[DllImport("kernel32.dll")]
internal static extern bool ReadProcessMemory(IntPtr hProcess, IntPtr lpBaseAddress, byte[] buffer, IntPtr size, IntPtr lpNumberOfBytesRead);
[DllImport("kernel32.dll")]
internal static extern bool WriteProcessMemory(IntPtr hProcess, IntPtr lpBaseAddress, byte[] buffer, IntPtr size, IntPtr lpNumberOfBytesWritten);
[DllImport("kernel32.dll")]
internal static extern bool CloseHandle(IntPtr hObject);
}
}
Sign in to post a comment
Comment ( 0 )