Skip to content

Instantly share code, notes, and snippets.

View BOT-Man-JL's full-sized avatar

BOT Man BOT-Man-JL

View GitHub Profile
@BOT-Man-JL
BOT-Man-JL / pdbdump.c
Last active August 16, 2024 10:08 — forked from mridgers/pdbdump.c
Small tool to list and query symbols in PDB files.
//------------------------------------------------------------------------------
// pdbdump.c - dump symbols from .pdb and executable files (public domain).
// - to compile; cl.exe /Ox /Zi pdbdump.c
// -
// - Martin Ridgers, pdbdump 'at' fireproofgravy.co.uk
//------------------------------------------------------------------------------
#include <stdio.h>
#include <Windows.h>
#include <DbgHelp.h>
@BOT-Man-JL
BOT-Man-JL / hyper_function.hpp
Created December 20, 2019 15:21 — forked from lingol/hyper_function.hpp
A std::function-like util, with the feature of accepting inheritance function.
//
// hyper_function.hpp
// libkinda_objc
//
// Created by Ling Guo on 2019/1/31.
//
#ifndef hyper_function_h
#define hyper_function_h