first commit of the recode
70% of the code was re-writter from scratch
This commit is contained in:
12
api.h
Normal file
12
api.h
Normal file
@@ -0,0 +1,12 @@
|
||||
#pragma once
|
||||
#include "instructions.h"
|
||||
|
||||
void api_put();
|
||||
void api_getasynckeystate();
|
||||
|
||||
static const command_t api_map[] = {
|
||||
{.command = "put", .fptr = api_put},
|
||||
{.command = "GetAsyncKeyState", .fptr = api_getasynckeystate},
|
||||
|
||||
{.command = NULL, .fptr = NULL}
|
||||
};
|
||||
Reference in New Issue
Block a user