Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(16)

Side by Side Diff: experimental/windows_debugger/debugger/rsp_console/targetver.h

Issue 10928195: First round of dead file removal (Closed) Base URL: https://github.com/samclegg/nativeclient-sdk.git@master
Patch Set: Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 #pragma once
2
3 // The following macros define the minimum required platform. The minimum requi red platform
4 // is the earliest version of Windows, Internet Explorer etc. that has the neces sary features to run
5 // your application. The macros work by enabling all features available on plat form versions up to and
6 // including the version specified.
7
8 // Modify the following defines if you have to target a platform prior to the on es specified below.
9 // Refer to MSDN for the latest info on corresponding values for different platf orms.
10 #ifndef _WIN32_WINNT // Specifies that the minimum required platform is Windows Vista.
11 #define _WIN32_WINNT 0x0600 // Change this to the appropriate value to targe t other versions of Windows.
12 #endif
13
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698