summaryrefslogtreecommitdiff
path: root/innobase/include/os0file.h
diff options
context:
space:
mode:
authorheikki@donna.mysql.fi <>2001-05-20 20:24:02 +0300
committerheikki@donna.mysql.fi <>2001-05-20 20:24:02 +0300
commitf26d163f4d4ad7a794038beaf578052f386938a2 (patch)
tree42ebe5c140bed37ad7a6c605cb9bc1d27b6bf0d4 /innobase/include/os0file.h
parentb13196387d44a6163d2c7305b7dc74631f10036c (diff)
downloadmariadb-git-f26d163f4d4ad7a794038beaf578052f386938a2.tar.gz
os0file.h InnoDB should now run with the same binary on Win95 and NT: checks OS version
srv0start.c InnoDB should now run with the same binary on Win95 and NT: checks OS version
Diffstat (limited to 'innobase/include/os0file.h')
-rw-r--r--innobase/include/os0file.h12
1 files changed, 11 insertions, 1 deletions
diff --git a/innobase/include/os0file.h b/innobase/include/os0file.h
index 98e892f16b2..7ea90bb63e4 100644
--- a/innobase/include/os0file.h
+++ b/innobase/include/os0file.h
@@ -100,7 +100,17 @@ log. */
requests in a batch, and only after that
wake the i/o-handler thread; this has
effect only in simulated aio */
-
+#define OS_WIN31 1
+#define OS_WIN95 2
+#define OS_WINNT 3
+
+/***************************************************************************
+Gets the operating system version. Currently works only on Windows. */
+
+ulint
+os_get_os_version(void);
+/*===================*/
+ /* out: OS_WIN95, OS_WIN31, OS_WINNT (2000 == NT) */
/********************************************************************
Opens an existing file or creates a new. */