add half-working CXB support

This commit is contained in:
2022-12-11 17:01:51 -05:00
committed by Hay1tsme
parent 60eddedccf
commit edd85ee818
25 changed files with 1082 additions and 0 deletions

13
cxbhook/network.c Normal file
View File

@ -0,0 +1,13 @@
#include <windows.h>
#include <stdbool.h>
#include <stdint.h>
#include "cxbhook/network.h"
#include "util/dprintf.h"
HRESULT network_hook_init(struct network_config *cfg)
{
dprintf("Network: Init\n");
return S_OK;
}