mirror of
https://github.com/djhackersdev/bemanitools.git
synced 2026-08-08 19:34:00 -05:00
18 lines
429 B
C
18 lines
429 B
C
#ifndef HOOKLIB_CONFIG_ADAPTER_H
|
|
#define HOOKLIB_CONFIG_ADAPTER_H
|
|
|
|
#include <windows.h>
|
|
|
|
#include "cconfig/cconfig.h"
|
|
|
|
struct hooklib_config_adapter {
|
|
// this is larger on purpose, in case ppl enter the wrong stuff here
|
|
char override_ip[32];
|
|
};
|
|
|
|
void hooklib_config_adapter_init(struct cconfig *config);
|
|
|
|
void hooklib_config_adapter_get(
|
|
struct hooklib_config_adapter *config_adapter, struct cconfig *config);
|
|
|
|
#endif |