update comments

main
serr 2025-01-15 20:44:49 +03:00
parent db0d83dc73
commit b1efb0877a
1 changed files with 2 additions and 1 deletions

View File

@ -8,7 +8,8 @@
typedef unsigned char byte; typedef unsigned char byte;
// Returns the real address of the passed function // Returns the real address of the passed function
// Will return NULL if the compiler is not supported // Supported compilers: MSVC, GCC
// May not work correctly on other compilers
byte* AF_address(byte* f) { byte* AF_address(byte* f) {
byte* real_address = NULL; byte* real_address = NULL;
#ifdef _MSC_VER // MSVC #ifdef _MSC_VER // MSVC