summaryrefslogtreecommitdiff
path: root/win32/win32.h
diff options
context:
space:
mode:
Diffstat (limited to 'win32/win32.h')
-rw-r--r--win32/win32.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/win32/win32.h b/win32/win32.h
index 791d92a405..93b74efd3f 100644
--- a/win32/win32.h
+++ b/win32/win32.h
@@ -15,6 +15,8 @@ typedef long long __int64;
#define Win32_Winsock
#endif
+
+
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
@@ -33,6 +35,13 @@ typedef long long __int64;
#include "EXTERN.h"
#endif
+struct tms {
+ long tms_utime;
+ long tms_stime;
+ long tms_cutime;
+ long tms_cstime;
+};
+
#ifndef START_EXTERN_C
#ifdef __cplusplus
# define START_EXTERN_C extern "C" {