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.
 
 
 
 
 
 

71 lines
1.3 KiB

/*++
Copyright (c) 1991 Microsoft Corporation
Module Name:
sslprgma.h
Abstract:
This file contains compiler pragmas to disable specific warnings to
let schannel compile at warning level 4
Author:
John Banes (jbanes) 05-Jun-2001
--*/
// Named type definition in parentheses
#pragma warning (disable: 4115)
// Conditional expression is constant
#pragma warning (disable: 4127)
// Zero-sized array in struct/union
#pragma warning (disable: 4200)
// Nameless struct/union
#pragma warning (disable: 4201)
// Redefined extern to static
//#pragma warning (disable: 4211)
// Bit field types other than int
#pragma warning (disable: 4214)
// Address of dllimport is not static
//#pragma warning (disable: 4232)
// Cast truncates constant value
//#pragma warning (disable: 4310)
// Structure was padded due to __declspec(align())
//#pragma warning (disable: 4324)
// LHS indirection alignment greater than argument alignment
//#pragma warning (disable: 4327)
// Pointer indirection alignment greater than argument alignment
//#pragma warning (disable: 4328)
// Removal of unused inline functions
//#pragma warning (disable: 4514)
// Assignment within conditional expression
#pragma warning (disable: 4706)