Showing category results for C++

Oct 8, 2012
Post comments count0
Post likes count0

Windows XP Targeting with C++ in Visual Studio 2012

Ibrahim Damlaj

Background In June, we announced enhanced targeting for Windows XP using the Visual Studio 2012 C++ compiler and libraries. This feature has been included in Visual Studio 2012 Update 1. You can download it from here. The purpose of this article is to provide an overview of the Windows XP targeting experience, the level of C++ runtime support, and...

C++
Oct 5, 2012
Post comments count0
Post likes count0

C++/CX Part 3 of [n]: Under Construction

James McNellis

See C++/CX Part 0 of [n]: An Introduction for an introduction to this series and a table of contents with links to each article in the series. In this article, we'll take a look at the how runtime classes are constructed. We'll use the following runtime class throughout this article: This type has both a default constructor and a constructor with...

C++
Oct 4, 2012
Post comments count0
Post likes count0

Project Austin Part 3 of 6: Ink Smoothing

Eric Brumer - MSFT

Hi, my name is Eric Brumer. I’m a developer on the C++ compiler optimizer, but I’ve spent some time working on Project Code Name Austin to help showcase the power and performance of C++ in a real world program. For a general overview of the project, please check out the introduction blog post. This blog post describes how we perform in...

C++
Sep 28, 2012
Post comments count0
Post likes count0

C++ Runtime for Windows 8 Store apps

Raman Sharma

Background If you have shipped software built using Visual C++, you probably have had to think about deploying C++ Runtime DLLs.  If your binaries dynamically link to the C++ Libraries, then your desktop apps probably deploy C++ Runtime using VCRedist, merge modules or by copying C++ Runtime DLLs alongside your own binaries.  In thi...

C++
Sep 27, 2012
Post comments count1
Post likes count0

Project Austin Part 2 of 6: Page Curling

Eric Brumer - MSFT

Hi, my name is Eric Brumer. I’m a developer on the C++ compiler optimizer, but I’ve spent some time working on Project Code Name Austin to help showcase the power and performance of C++ in a real-world program. For a general overview of the project, please check out the original blog post. The source code for Austin, including the bits ...

C++
Sep 25, 2012
Post comments count0
Post likes count0

DirectX Graphics Development with Visual Studio 2012

Visual CPP Team

Visual Studio 2012 includes several new features for developing and debugging applications that use DirectX.  Here are links to references and resources so you can get started with these new features. Getting StartedYou can write and build apps that use DirectX with Visual Studio Express 2012 for Windows 8 or Visual Studio Express 20...

C++
Sep 24, 2012
Post comments count0
Post likes count0

Download Today: Refreshed Casablanca Bits Available

Artur Laksberg

Back, at the end of April, we announced our first release of Casablanca as an incubation project on Devlabs. Since then, we are glad to have received a positive response from the C++ community. At the end of June, we refreshed the bits for support of Visual Studio 2012 RC and Windows 8 RP. Those builds are now rather long in the tooth, and many hav...

C++
Sep 20, 2012
Post comments count0
Post likes count0

Project Austin Part 1 of 6: Introduction

Jorge Pereira - MSFT

My name is Jorge Pereira and I am a developer at Microsoft.  For the past few months I've been working on a Windows 8 app along with a small team of developers from the Visual C++ team, we call it Project Code Name Austin. Austin is a digital note-taking app for Windows 8. You can add pages to your notebook, delete them, or move them aro...

C++
Sep 19, 2012
Post comments count0
Post likes count0

Casablanca at TechEd Australia

Artur Laksberg

A few days ago, our friends and technology enthusiasts John Azariah and Mahesh Krishnan delivered a great presentation on Casablanca at the TechEd Australia. John and Mahesh go deep - PPL tasks, table and blob storage, Metro client, Azure deployment, and of course, lots of great demos. Enjoy: https://channel9.msdn.com/Events/TechEd/Australia/20...

C++
Sep 17, 2012
Post comments count1
Post likes count0

C++/CX Part 2 of [n]: Types That Wear Hats

Visual CPP Team

See C++/CX Part 0 of [N]: An Introduction for an introduction to this series. The hat () is one of the most prominent features of C++/CX--it's hard not to notice it when one first sees C++/CX code. So, what exactly is a type? A hat type is a smart pointer type that (1) automatically manages the lifetime of a Windows Runtime object and (2) provides...

C++