1 /* PROJECT: ReactOS sndrec32 2 * LICENSE: GPL - See COPYING in the top level directory 3 * FILE: base/applications/sndrec32/targetver.h 4 * PURPOSE: Sound recording 5 * PROGRAMMERS: Marco Pagliaricci (irc: rendar) 6 */ 7 8 #pragma once 9 10 #ifndef WINVER 11 #define WINVER 0x0600 12 #endif 13 14 #ifndef _WIN32_WINNT 15 #define _WIN32_WINNT 0x0600 16 #endif 17 18 #ifndef _WIN32_WINDOWS 19 #define _WIN32_WINDOWS 0x0410 20 #endif 21 22 #ifndef _WIN32_IE 23 #define _WIN32_IE 0x0700 24 #endif 25