Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'agent/tcf/services/tcf_elf.h')
-rw-r--r--agent/tcf/services/tcf_elf.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/agent/tcf/services/tcf_elf.h b/agent/tcf/services/tcf_elf.h
index 643544a3..c9b2b5b1 100644
--- a/agent/tcf/services/tcf_elf.h
+++ b/agent/tcf/services/tcf_elf.h
@@ -23,12 +23,12 @@
#if ENABLE_ELF
-#if !defined(WIN32) && !defined(__APPLE__)
+#if !defined(_WIN32) && !defined(__APPLE__)
# include <elf.h>
#endif
#include <tcf/framework/context.h>
-#if defined(WIN32) || defined(__APPLE__)
+#if defined(_WIN32) || defined(__APPLE__)
#define EI_MAG0 0
#define EI_MAG1 1
@@ -252,7 +252,7 @@ typedef struct {
#endif
-#if defined(_WRS_KERNEL) || defined(WIN32) || defined(__APPLE__)
+#if defined(_WRS_KERNEL) || defined(_WIN32) || defined(__APPLE__)
typedef uint64_t Elf64_Addr;
typedef uint16_t Elf64_Half;
@@ -389,7 +389,7 @@ struct ELF_File {
ErrorReport * error;
int fd;
-#if defined(WIN32)
+#if defined(_WIN32)
HANDLE mmap_handle;
#endif

Back to the top