Showing category results for C++

Aug 26, 2013
Post comments count0
Post likes count0

How is your experience developing graphics apps?

Rong Lu

Hello, my name is Rong Lu. I’m a PM on Visual C++ team working on graphics development features in VS, including asset designers, templates, graphics diagnostics, etc.. In preparation for planning for graphics tooling capabilities in the next version of Visual Studio, we’re trying to understand the needs of graphics developers bett...

C++
Aug 23, 2013
Post comments count0
Post likes count0

C++ IDE Improvements in Visual Studio 2013

Jennifer Leaf [MSFT]

When we considered what features to add to the C++ IDE in Visual Studio 2013, we decided to focus on improving the C++ code editing experience. We've added a number of features that will help you write and format your code more quickly, and will give you more useful information in IntelliSense. You can configure the behavior of most of these new fe...

C++
Aug 20, 2013
Post comments count0
Post likes count0

ATL and MFC changes and fixes in Visual Studio 2013

Pat Brenner MSFT

Hello, I’m Pat Brenner, a developer on the Visual C++ Libraries team.  In this blog post I would like to share with you the changes that we’ve made in ATL and MFC for Visual Studio 2013.One of the major changes we made was to eliminate the ATL DLL altogether.  All ATL code is now static, either in the header files or in t...

C++
Aug 9, 2013
Post comments count0
Post likes count0

Optimizing C++ Code : Dead Code Elimination

Jim Hogg

 If you have arrived in the middle of this blog series, you might want instead to begin at the beginning.This post examines the optimization called Dead-Code-Elimination, which I’ll abbreviate to DCE.  It does what it says: discards any calculations whose results are not actually used by the program.Now, you will probably assert tha...

C++
Aug 5, 2013
Post comments count0
Post likes count0

C++ IDE Performance Improvement in Visual Studio 2013 Preview

Li Shao [MSFT]

My name is Li Shao. I am a Senior Software Design Engineer in Test on the VC++ team. In this blog, I would like to share the performance enhancements we've made in VS 2013 Preview to improve the C++ IDE and build system. Performance is a vital part of software quality. Over the last couple of releases we have made significant performance improve...

C++
Jul 30, 2013
Post comments count0
Post likes count0

New Features in C++/CX's <collection.h> for VS 2013 RTM

Brandon Jacobs

Introduction: Hi, I’m Brandon Jacobs, an intern on the Visual C++ Libraries team. For part of my internship, I was tasked with adding new features to Stephan T. Lavavej’s <collection.h>. It was certainly an honor to be one of the few to contribute to <collection.h>. You can find these changes in VS 2013 RTM (these changes a...

C++
Jul 19, 2013
Post comments count0
Post likes count0

C99 library support in Visual Studio 2013

Pat Brenner MSFT

Hello, I’m Pat Brenner, a developer on the Visual C++ Libraries team. In this blog post I want to share some information about the C99 support added to the C run-time library in Visual Studio 2013.To summarize, we added declarations and implementations for missing functions in the following headers: math.h, ctype.h, wctype.h, stdio.h, stdlib....

C++
Jul 11, 2013
Post comments count0
Post likes count0

Introducing ‘Vector Calling Convention’

Ankit Asthana

Introduction In VS2013 (download here), we have introduced a new calling convention known as 'Vector Calling Convention' but before we go on and introduce the new calling convention let us take a look at the lay of the land today. There are multiple calling conventions that exist today, especially on x86 platform. The x64 platform has howe...

C++
Jul 10, 2013
Post comments count0
Post likes count0

C++ REST SDK 1.1.0 is now available

Sana Mithani

C++ REST SDK 1.1.0 has been released on CodePlex.  This version of the C++ REST SDK reintroduces the much anticipated the HTTP Listener library. Developers can now complete their REST story by creating their own server to respond to requests sent by client applications. For more information about this release and to view the sources, visit the...

C++
Jul 10, 2013
Post comments count0
Post likes count0

Intercepting HTTP Request/Response using C++ Rest HTTP Library

Kavya Kotacherry

We released the C++ REST SDK (codename "Casablanca") as an open source project on CodePlex in Feb 2013. It enables writing modern, asynchronous C++ code that can connect with REST services. Using the C++ REST SDK, you can create an HTTP client that can connect to HTTP server, send requests and handle responses. The following links are pre-requisit...

C++