forked from Hay1tsme/segatools
12 lines
183 B
C
12 lines
183 B
C
#pragma once
|
|
|
|
#include <windows.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
struct amvideo_config {
|
|
bool enable;
|
|
};
|
|
|
|
HRESULT amvideo_hook_init(const struct amvideo_config *cfg, HMODULE redir_mod);
|