From f31788c6c2fcbfd4fbcdd23850bcb378e7578dbe Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Sun, 25 Jun 2023 08:57:10 +0200 Subject: [PATCH] Add missing include guards Causes compile errors. --- r5dev/windows/tebpeb64.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/r5dev/windows/tebpeb64.h b/r5dev/windows/tebpeb64.h index 4a9f8f41..634a8447 100644 --- a/r5dev/windows/tebpeb64.h +++ b/r5dev/windows/tebpeb64.h @@ -20,7 +20,8 @@ // // 2017-08-25: initial public release // - +#ifndef TEBPEB_64_H +#define TEBPEB_64_H // // base types @@ -265,3 +266,5 @@ struct TEB64 PTR64 ActivationContextStackPointer; //0x02C8 }; //struct TEB64 + +#endif // TEBPEB_64_H