1 // Copyright 2008 Google Inc. 2 // Author: Lincoln Smith 3 // 4 // Licensed under the Apache License, Version 2.0 (the "License"); 5 // you may not use this file except in compliance with the License. 6 // You may obtain a copy of the License at 7 // 8 // http://www.apache.org/licenses/LICENSE-2.0 9 // 10 // Unless required by applicable law or agreed to in writing, software 11 // distributed under the License is distributed on an "AS IS" BASIS, 12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 // See the License for the specific language governing permissions and 14 // limitations under the License. 15 // 16 // A config.h to be used for MS Visual Studio projects, when the configure 17 // script cannot be used to automatically determine the capabilities of 18 // the environment. 19 20 #ifndef OPEN_VCDIFF_VSPROJECTS_CONFIG_H_ 21 #define OPEN_VCDIFF_VSPROJECTS_CONFIG_H_ 22 23 /* Define to 1 if you have the `QueryPerformanceCounter' function. */ 24 #define HAVE_QUERYPERFORMANCECOUNTER 1 25 26 /* Define to 1 if you have the <stdlib.h> header file. */ 27 #define HAVE_STDLIB_H 1 28 29 /* Define to 1 if you have the <strings.h> header file. */ 30 #define HAVE_STRINGS_H 1 31 32 /* Define to 1 if you have the <windows.h> header file. */ 33 #define HAVE_WINDOWS_H 1 34 35 /* Define to 1 if the system has the type `__int16'. */ 36 #define HAVE___INT16 1 37 38 /* Name of package */ 39 #define PACKAGE "open-vcdiff" 40 41 /* Define to the address where bug reports for this package should be sent. */ 42 #define PACKAGE_BUGREPORT "opensource (at) google.com" 43 44 /* Define to the full name of this package. */ 45 #define PACKAGE_NAME "open-vcdiff" 46 47 /* Define to the full name and version of this package. */ 48 #define PACKAGE_STRING "open-vcdiff 0.7" 49 50 /* Define to the one symbol short name of this package. */ 51 #define PACKAGE_TARNAME "open-vcdiff" 52 53 /* Define to the version of this package. */ 54 #define PACKAGE_VERSION "0.7" 55 56 /* Define to 1 if you have the ANSI C header files. */ 57 #define STDC_HEADERS 1 58 59 /* Version number of package */ 60 #define VERSION "0.7" 61 62 // These functions have different names, but the same behavior, 63 // for Visual Studio. 64 #define strcasecmp _stricmp 65 #define snprintf _snprintf 66 67 #endif // OPEN_VCDIFF_VSPROJECTS_CONFIG_H_ 68