10 lines
215 B
C++
10 lines
215 B
C++
#include "xrbx/xrbx.h"
|
|
#include <format>
|
|
#include <iostream>
|
|
|
|
int main() {
|
|
Process rbx(L"notepad.exe");
|
|
std::cout << std::format("Image Base: {:X}", uintptr_t(rbx.imageBase())) << std::endl;
|
|
return 0;
|
|
}
|