(file) Return to mofyacc.c CVS log (file) (dir) Up to [OMI] / omi / mof

 1 mike  1.1 /*
 2           **==============================================================================
 3           **
 4           ** Open Management Infrastructure (OMI)
 5           **
 6           ** Copyright (c) Microsoft Corporation
 7           ** 
 8           ** Licensed under the Apache License, Version 2.0 (the "License"); you may not 
 9           ** use this file except in compliance with the License. You may obtain a copy 
10           ** of the License at 
11           **
12           **     http://www.apache.org/licenses/LICENSE-2.0 
13           **
14           ** THIS CODE IS PROVIDED *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15           ** KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED 
16           ** WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE, 
17           ** MERCHANTABLITY OR NON-INFRINGEMENT. 
18           **
19           ** See the Apache 2 License for the specific language governing permissions 
20           ** and limitations under the License.
21           **
22 mike  1.1 **==============================================================================
23           */
24           
25 mike  1.2 #if defined(_MSC_VER)
26           
27           /* warning C4127: conditional expression is constant */
28           # pragma warning( disable : 4127 )
29           
30           /* warning C4244: '=' : conversion from '?' to '?', possible loss of data */
31           # pragma warning( disable : 4244 )
32           # pragma warning( disable : 4242 )
33           
34           /* warning C4102: 'yyerrlab' : unreferenced label */
35           # pragma warning( disable : 4102)
36           
37           /* warning C4706: assignment within conditional expression */
38           # pragma warning( disable : 4706 )
39           
40           /* PreFast - reviewed and believed to be false-positive*/
41           
42           /* warning C6385: Invalid data: accessing '??', the readable size is 'x' bytes, but 'y' bytes might be read: Lines: ... */
43           # pragma warning(disable : 6385)
44           
45           #ifdef _PREFAST_
46 mike  1.2 #pragma prefast (disable: 26014)
47           #pragma prefast (disable: 26001)
48           #endif
49           
50           #endif /* _MSC_VER */
51           
52           #include "mofyaccinc.c"

ViewCVS 0.9.2