From 0da1e5fcbc8184d3a85d7e08041052d8740ccefc Mon Sep 17 00:00:00 2001 From: serr Date: Wed, 15 Jan 2025 18:37:41 +0300 Subject: [PATCH] delete comments --- analysis_function.h | 7 ------- 1 file changed, 7 deletions(-) diff --git a/analysis_function.h b/analysis_function.h index 37b819f..275144e 100644 --- a/analysis_function.h +++ b/analysis_function.h @@ -9,22 +9,15 @@ typedef unsigned char byte; byte* AF_address(byte* f) { byte* real_address = NULL; #ifdef _MSC_VER // MSVC - //printf("MSVC Compiler Detected\n"); #ifdef NDEBUG // MSVC release mode real_address = f; - //printf("FUNCTION ADDRESS: %p\n", real_address); #else // MSVC debug mode byte* f_p = f; byte* offset = (byte*)(*((int*)f_p) >> 8); real_address = f_p + (int)offset + 5; - //printf("TABLE ADDRESS: %p\n", f_p); - //printf("OFFSET: %p\n", offset); - //printf("REAL ADDRESS: %p\n", real_address); #endif #elif defined(__GNUC__) // GCC - //printf("GCC Compiler Detected\n"); real_address = f; - //printf("FUNCTION ADDRESS: %p\n", real_address); #endif return real_address; }