mirror of
https://github.com/FEX-Emu/FEX.git
synced 2025-02-19 06:17:33 +00:00
19 lines
397 B
C++
19 lines
397 B
C++
#pragma once
|
|
#include <imgui.h>
|
|
#include <cstdint>
|
|
#include <vector>
|
|
|
|
namespace FEXImGui {
|
|
|
|
// Listbox that fills the child window
|
|
bool ListBox(const char* label, int* current_item, bool (*items_getter)(void*, int, const char**), void* data, int items_count);
|
|
|
|
struct IRLines {
|
|
size_t From;
|
|
size_t To;
|
|
};
|
|
|
|
bool CustomIRViewer(char const *buf, size_t buf_size, std::vector<IRLines> *lines);
|
|
|
|
}
|