mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-11 17:00:37 +00:00
022f7790db
This is quite nice, although I wish [[gnu::always_inline]] implied inline. Also "gnu::" is kind of a wart, but whatcha gonna do.
17 lines
296 B
C
17 lines
296 B
C
#pragma once
|
|
|
|
#include <AK/AKString.h>
|
|
#include <AK/Vector.h>
|
|
|
|
struct KSym {
|
|
dword address;
|
|
const char* name;
|
|
};
|
|
|
|
const KSym* ksymbolicate(dword address);
|
|
void load_ksyms();
|
|
void init_ksyms();
|
|
|
|
extern bool ksyms_ready;
|
|
extern dword ksym_lowest_address;
|
|
extern dword ksym_highest_address;
|