Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEugene Grigorjev <git-no-reply@zabbix.com>2006-08-04 13:20:30 +0400
committerEugene Grigorjev <git-no-reply@zabbix.com>2006-08-04 13:20:30 +0400
commit7a7c161c500531d4f72498cafd23dba0d92a7eda (patch)
tree48e86ca4f7628935828c55a20870d3f20eff852b /include/zbxtypes.h
parent703bddbbe7c4dd29ae9a5de00bd6474f13bff561 (diff)
- added ZABBIX agent for Win64 platforms. (Eugene)
Diffstat (limited to 'include/zbxtypes.h')
-rwxr-xr-xinclude/zbxtypes.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/zbxtypes.h b/include/zbxtypes.h
index 9e72edd87c5..4bc35c1eb11 100755
--- a/include/zbxtypes.h
+++ b/include/zbxtypes.h
@@ -20,7 +20,7 @@
#ifndef ZABBIX_TYPES_H
#define ZABBIX_TYPES_H
-#if defined(WIN32)
+#if defined(_WINDOWS)
# define zbx_uint64_t __int64
# define ZBX_FS_UI64 "%I64u"
@@ -37,7 +37,7 @@
# define uint32_t __int32
#endif /* uint32_t */
-#else /* WIN32 */
+#else /* _WINDOWS */
# define zbx_uint64_t uint64_t
# if __WORDSIZE == 64
@@ -48,7 +48,7 @@
# define zbx_pid_t pid_t
-#endif /* WIN32 */
+#endif /* _WINDOWS */
#ifndef S_ISREG
# define S_ISREG(x) (((x) & S_IFMT) == S_IFREG)