(file) Return to moflex.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 C4131: '?' : uses old-style declarator */
35           # pragma warning(disable : 4131 )
36           
37           /* warning C4267: '=' : conversion from '?' to '?', possible loss of data */
38           # pragma warning(disable : 4267)
39           
40           
41           /* PreFast - reviewed and believed to be false-positive*/
42           
43           /* warning C6385: Invalid data: accessing '??', the readable size is 'x' bytes, but 'y' bytes might be read: Lines: ... */
44           # pragma warning(disable : 6385)
45           
46 mike  1.2 /*  warning C6011: Dereferencing NULL pointer '??': Lines: */
47           # pragma warning(disable : 6011)
48           
49           #ifdef _PREFAST_
50           #pragma prefast (disable: 26001)
51           #pragma prefast (disable: 28718)
52           #endif
53           #endif /* _MSC_VER */
54           
55           //#ifdef __cplusplus
56           //#define input yyinput
57           //#endif
58           
59           #include "moflexinc.c"

ViewCVS 0.9.2