summaryrefslogtreecommitdiff
path: root/ACE/ace/OS_NS_sys_stat.h
diff options
context:
space:
mode:
authormitza <mitza@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2007-07-19 20:00:23 +0000
committermitza <mitza@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2007-07-19 20:00:23 +0000
commit2c635838e10029b921ea63b67138158e2d06cc38 (patch)
treed38a37b1c00c26109a226eb4122fe3813c8700db /ACE/ace/OS_NS_sys_stat.h
parent3d671c11ba4ee33fc3caae561386296f353ce2b6 (diff)
downloadATCD-2c635838e10029b921ea63b67138158e2d06cc38.tar.gz
ChangeLogTag: Thu Jul 19 19:54:22 UTC 2007 Adam Mitz <mitza@ociweb.com>
Diffstat (limited to 'ACE/ace/OS_NS_sys_stat.h')
-rw-r--r--ACE/ace/OS_NS_sys_stat.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/ACE/ace/OS_NS_sys_stat.h b/ACE/ace/OS_NS_sys_stat.h
index bfda63f45fb..4afae8c1be7 100644
--- a/ACE/ace/OS_NS_sys_stat.h
+++ b/ACE/ace/OS_NS_sys_stat.h
@@ -46,7 +46,11 @@ typedef struct stati64 ACE_stat;
# if _MSC_VER >= 1400
// For vc8 which has time_t as 64bit
// 64-bit file offsets, 64-bit time_t
+# if defined (ACE_MSVC_USES_DOUBLE_UNDERSCORE_STAT64)
+typedef struct __stat64 ACE_stat;
+# else
typedef struct _stat64 ACE_stat;
+# endif
# define ACE_STAT_FUNC_NAME ::_stat64
# define ACE_WSTAT_FUNC_NAME ::_wstat64
# else