From 3bb1b54c012c25de3c27ff5e69ed540a45d3184e Mon Sep 17 00:00:00 2001 From: xerox Date: Mon, 17 Aug 2020 22:44:49 +0000 Subject: [PATCH] Update README.md --- README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 6d952bf..0fced70 100644 --- a/README.md +++ b/README.md @@ -45,15 +45,15 @@ To begin we need to extract the driver handle at runtime, this can be done simpl the handle to the driver we can start sending IOCTL's to BattlEye. The IOCTL data is not encrypted nor complicated... this is what it looks like: ```cpp - struct beioctl - { - void* ret_addr; - HANDLE handle; - void* base_addr; - void* buffer; - size_t buffer_size; - size_t* bytes_read; - }; +struct beioctl +{ + void* ret_addr; + HANDLE handle; + void* base_addr; + void* buffer; + size_t buffer_size; + size_t* bytes_read; +}; ```