os_type.c
Upload User: tsgydb
Upload Date: 2007-04-14
Package Size: 10674k
Code Size: 1k
Category:

MySQL

Development Platform:

Visual C++

  1. /*-
  2.  * See the file LICENSE for redistribution information.
  3.  *
  4.  * Copyright (c) 1998, 1999, 2000
  5.  * Sleepycat Software.  All rights reserved.
  6.  */
  7. #include "db_config.h"
  8. #ifndef lint
  9. static const char revid[] = "$Id: os_type.c,v 11.3 2000/02/14 03:00:07 bostic Exp $";
  10. #endif /* not lint */
  11. /*
  12.  * __os_is_winnt --
  13.  * Return 1 if Windows/NT, otherwise 0.
  14.  *
  15.  * PUBLIC: int __os_is_winnt __P((void));
  16.  */
  17. int
  18. __os_is_winnt()
  19. {
  20. static int __os_type = -1;
  21. /*
  22.  * The value of __os_type is computed only once, and cached to
  23.  * avoid the overhead of repeated calls to GetVersion().
  24.  */
  25. if (__os_type == -1)
  26. if ((GetVersion() & 0x80000000) == 0)
  27. __os_type = 1;
  28. else
  29. __os_type = 0;
  30. return (__os_type);
  31. }