Source code of Windows XP (NT5)
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
/*++
Copyright (c) 1996 Microsoft Corporation
Module Name : isplat.cxx
Abstract:
This module defines functions for determining platform types
Author:
Johnson Apacible (johnsona) 19-Nov-1996
Murali Krishnan (MuraliK) 17-Apr-1997 Added CriticalSectionWith SpinCount stuff (moved to locks.cxx) --*/
#include "precomp.hxx"
#include <inetsvcs.h>
#define DLL_IMPLEMENTATION
#define IMPLEMENTATION_EXPORT
#include <locks.h>
typedef BOOLEAN (NTAPI *GET_PRODUCT_TYPE)( PNT_PRODUCT_TYPE );
extern "C" PLATFORM_TYPE IISGetPlatformType( VOID ) /*++
This function consults the registry and determines the platform type for this machine.
Arguments:
None
Returns: Platform type
--*/ { PLATFORM_TYPE pt; LONG result; HKEY keyHandle; WCHAR productType[30]; DWORD type; BOOL isNt = TRUE;
OSVERSIONINFO osInfo;
//
// See if the platform type has already been discovered.
//
if ( g_PlatformType != PtInvalid ) { return(g_PlatformType); }
//
// see if this is win95
//
osInfo.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);
if ( GetVersionEx( &osInfo ) ) { isNt = (osInfo.dwPlatformId == VER_PLATFORM_WIN32_NT); } else { IIS_PRINTF((buff,"GetVersionEx failed with %d\n", GetLastError())); }
if ( isNt ) {
HINSTANCE hNtdll; NT_PRODUCT_TYPE ntType; GET_PRODUCT_TYPE pfnGetProductType;
//
// Get the product type from the system
//
pt = PtNtWorkstation; hNtdll = LoadLibrary("ntdll.dll"); if ( hNtdll != NULL ) {
pfnGetProductType = (GET_PRODUCT_TYPE) GetProcAddress(hNtdll, "RtlGetNtProductType");
if ( (pfnGetProductType != NULL) && pfnGetProductType( &ntType ) ) {
if ( (ntType == NtProductLanManNt) || (ntType == NtProductServer) ) {
pt = PtNtServer; } }
FreeLibrary( hNtdll ); }
} else { pt = PtWindows95; }
g_PlatformType = pt; return(pt);
} // IISGetPlatformType
// Thunking wrapper for ::SetCriticalSectionSpinCount that will work on
// systems that don't have this API in kernel32
DWORD IISSetCriticalSectionSpinCount( LPCRITICAL_SECTION lpCriticalSection, DWORD dwSpinCount) { return CCritSec::SetSpinCount(lpCriticalSection, dwSpinCount); }
// Thunking wrapper for ::InitializeCriticalSectionAndSpinCount that will
// work on systems that don't have this API in kernel32. Sets the spin count
// to the IIS default, IIS_DEFAULT_CS_SPIN_COUNT, which is defined in
// <pudebug.h>
VOID IISInitializeCriticalSection( LPCRITICAL_SECTION lpCriticalSection) { InitializeCriticalSection(lpCriticalSection); CCritSec::SetSpinCount(lpCriticalSection, IIS_DEFAULT_CS_SPIN_COUNT); }
|