1
0
mirror of synced 2024-11-24 05:50:12 +01:00
bananatools/platform/netenv.h
2023-01-02 23:39:03 -05:00

19 lines
289 B
C

#pragma once
#include <windows.h>
#include <stdbool.h>
#include <stdint.h>
struct netenv_config {
bool enable;
uint32_t subnet;
uint8_t addr_suffix;
uint8_t router_suffix;
uint8_t mac_addr[6];
};
HRESULT netenv_hook_init(
const struct netenv_config *cfg);