Path: blob/trunk/cpp/webdriver-interactions/stdafx.h
2867 views
/*1Licensed to the Software Freedom Conservancy (SFC) under one2or more contributor license agreements. See the NOTICE file3distributed with this work for additional information4regarding copyright ownership. The SFC licenses this file5to you under the Apache License, Version 2.0 (the "License");6you may not use this file except in compliance with the License.7You may obtain a copy of the License at89http://www.apache.org/licenses/LICENSE-2.01011Unless required by applicable law or agreed to in writing, software12distributed under the License is distributed on an "AS IS" BASIS,13WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.14See the License for the specific language governing permissions and15limitations under the License.16*/1718// stdafx.h : include file for standard system include files,19// or project specific include files that are used frequently, but20// are changed infrequently21//2223#pragma once2425// Modify the following defines if you have to target a platform prior to the ones specified below.26// Refer to MSDN for the latest info on corresponding values for different platforms.27#ifndef WINVER // Allow use of features specific to Windows XP or later.28#define WINVER 0x0501 // Change this to the appropriate value to target other versions of Windows.29#endif3031#ifndef _WIN32_WINNT // Allow use of features specific to Windows XP or later.32#define _WIN32_WINNT 0x0501 // Change this to the appropriate value to target other versions of Windows.33#endif3435#ifndef _WIN32_WINDOWS // Allow use of features specific to Windows 98 or later.36#define _WIN32_WINDOWS 0x0410 // Change this to the appropriate value to target Windows Me or later.37#endif3839#ifndef _WIN32_IE // Allow use of features specific to IE 6.0 or later.40#define _WIN32_IE 0x0600 // Change this to the appropriate value to target other versions of IE.41#endif4243#include <stdio.h>44#include <tchar.h>454647#define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // some CString constructors will be explicit4849#include <atlbase.h>50#include <atlstr.h>51#include <atlwin.h>5253// TODO: reference additional headers your program requires here54#include <atlcom.h>555657