> caused by bad code around thumbnail fetching logic including file checks in every draw call, see #4 > added `hooks::wmisc` for linux specific minor performance fixes and similar
21 lines
419 B
C++
21 lines
419 B
C++
#pragma once
|
|
#include <cstdint>
|
|
|
|
|
|
namespace hooks::devel
|
|
{
|
|
//_INFO: order matters, low level routines first (if you want them active during later routines)
|
|
enum devel_routine : uint32_t
|
|
{
|
|
avs_fs_detour = 0,
|
|
sndb_test,
|
|
thum_test,
|
|
devel_routine_last
|
|
};
|
|
typedef uint32_t devel_routine_t;
|
|
|
|
bool active_routine(devel_routine_t val);
|
|
void bind_routine(devel_routine_t val, void (*cb)());
|
|
void entry_main();
|
|
}
|