Leaked source code of windows server 2003
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) 1997 Microsoft Corporation
// Author: RameshV
// Description: per thread error status
//================================================================================
#include <hdrmacro.h>
const DWORD nErrorsToStore = 4; // the size of the array is 1+nErrorsToStore
DWORD StErrTlsIndex[5] = { -1, -1, -1, -1, -1 };
//BeginExport(function)
DWORD StErrInit( VOID ) //EndExport(function)
{ return ERROR_SUCCESS; }
//BeginExport(function)
VOID StErrCleanup( VOID ) //EndExport(function)
{ }
//BeginExport(function)
VOID SetInternalFormatError( IN DWORD Code, IN BOOL ReallyDoIt ) { #ifdef DBG
if(ReallyDoIt) { // printf("InternalError: %lx\n", Code);
} #endif // DBG
} //EndExport(function)
//================================================================================
// end of file
//================================================================================
|