This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Loads an associated .map file into an analyzed .xex assembly. | |
//@author | |
//@category | |
//@keybinding | |
//@menupath | |
//@toolbar | |
import java.io.BufferedReader; | |
import java.io.File; | |
import java.io.FileInputStream; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#pragma once | |
#include <Windows.h> | |
#include <cstdlib> | |
#include <string> | |
#include <utility> | |
#include "minhook/include/MinHook.h" // slightly fuzzed and stripped-down MinHook, ctrlc+v'ed from LEBinkProxy | |
typedef unsigned long uint32; | |
typedef signed long int32; | |
typedef signed long long int64; |