os_type.c
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /*-
  2.  * See the file LICENSE for redistribution information.
  3.  *
  4.  * Copyright (c) 1998-2002
  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.6 2002/01/11 15:53:08 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. }
  31. return (__os_type);
  32. }