obs-studio/libobs/util/windows/obfuscate.h
Richard Stanway 86963f65d2
libobs, win-capture: Don't export ms_get_obfuscated_func
Since this was included in things like the inject helper and game
capture DLLs, it added an additional export to those programs. Instead,
simply share the source files directly in the projects that need it.

Co-authored-by: jpark37 <jpark37@users.noreply.github.com>
2022-08-07 19:41:23 +02:00

17 lines
314 B
C

#pragma once
#include "../c99defs.h"
#include <Windows.h>
#ifdef __cplusplus
extern "C" {
#endif
/* this is a workaround to A/Vs going crazy whenever certain functions (such as
* OpenProcess) are used */
void *ms_get_obfuscated_func(HMODULE module, const char *str, uint64_t val);
#ifdef __cplusplus
}
#endif