Click here to Skip to main content
15,886,199 members
Articles / Desktop Programming / Win32

Windows 7: Exploration of 7 exciting new programming features in a single application!

Rate me:
Please Sign up or sign in to vote.
4.93/5 (87 votes)
6 Jan 2010CPOL22 min read 142K   2.6K   190  
Demonstration of seven new programming technologies.
#define STRICT
#define _WIN32_WINNT 0x601
#define _WIN32_IE 0x800

#include <winsock2.h>
#include <windows.h>
#include <wininet.h>
#include <richedit.h>
#include <process.h>
#include <commctrl.h>
#include <stdio.h>
#include <shellapi.h>
#include <string>
#include <shlwapi.h>
#include <vector>
#include <tchar.h>
#include <gdiplus.h>
#include <shlobj.h>
#include <UIRibbon.h>
#include <UIRibbonPropertyHelpers.h>
#include <d2d1.h>
#include <dwrite.h>
#include <wincodec.h>
#include <sensorsapi.h>
#include <propvarutil.h>
#include <sensors.h>
#include <locationapi.h>
#include <UIAnimation.h>

using namespace std;
#pragma warning(disable : 4996)
#pragma warning(disable : 4267)
#pragma warning(disable : 4310)

#include "stuff.h"

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
Greece Greece
I'm working in C++, PHP , Java, Windows, iOS, Android and Web (HTML/Javascript/CSS).

I 've a PhD in Digital Signal Processing and Artificial Intelligence and I specialize in Pro Audio and AI applications.

My home page: https://www.turbo-play.com

Comments and Discussions