#include <iostream>
#include "windows.h"
int main()
{
int PID;
int Memory;
int Buffer;
std::cout << "Process ID: ";
std::cin >> PID;
HANDLE hHandle = OpenProcess(PROCESS_ALL_ACCESS, 0, PID);
if (hHandle == INVALID_HANDLE_VALUE) {
std::cerr << "An error...