⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 win32os.c

📁 bind 9.3结合mysql数据库
💻 C
字号:
/* * Copyright (C) 2004  Internet Systems Consortium, Inc. ("ISC") * Copyright (C) 2002  Internet Software Consortium. * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY * AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR * PERFORMANCE OF THIS SOFTWARE. *//* $Id: win32os.c,v 1.2.176.2.2.2 2004/03/08 09:05:01 marka Exp $ */#include <windows.h>#include <isc/win32os.h>static BOOL bInit = FALSE;static OSVERSIONINFOEX osVer;static voidinitialize_action(void) {	BOOL bSuccess;	if (bInit)		return;		/*	 * NOTE: VC++ 6.0 gets this function declaration wrong	 * so we compensate by casting the argument	 */	osVer.dwOSVersionInfoSize = sizeof(OSVERSIONINFOEX);	bSuccess = GetVersionEx((OSVERSIONINFO *) &osVer);	/*	 * Versions of NT before NT4.0 SP6 did not return the	 * extra info that the EX structure provides and returns	 * a failure so we need to retry with the old structure.	 */	if(!bSuccess) {		osVer.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);		bSuccess = GetVersionEx((OSVERSIONINFO *) &osVer);	}	bInit = TRUE;}unsigned intisc_win32os_majorversion(void) {	initialize_action();	return ((unsigned int)osVer.dwMajorVersion);}unsigned intisc_win32os_minorversion(void) {	initialize_action();	return ((unsigned int)osVer.dwMinorVersion);}unsigned intisc_win32os_servicepackmajor(void) {	initialize_action();	return ((unsigned int)osVer.wServicePackMajor);}unsigned intisc_win32os_servicepackminor(void) {	initialize_action();	return ((unsigned int)osVer.wServicePackMinor);}intisc_win32os_versioncheck(unsigned int major, unsigned int minor,		     unsigned int spmajor, unsigned int spminor) {	initialize_action();	if (major < isc_win32os_majorversion())		return (1);	if (major > isc_win32os_majorversion())		return (-1);	if (minor < isc_win32os_minorversion())		return (1);	if (minor > isc_win32os_minorversion())		return (-1);	if (spmajor < isc_win32os_servicepackmajor())		return (1);	if (spmajor > isc_win32os_servicepackmajor())		return (-1);	if (spminor < isc_win32os_servicepackminor())		return (1);	if (spminor > isc_win32os_servicepackminor())		return (-1);	/* Exact */	return (0);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -