Dark Bit Factory & Gravity
PROGRAMMING => C / C++ /C# => Topic started by: Paul on September 17, 2007
-
Hi
I'm wondering if platform sdk installs automaticly with visual studio 2008 beta 2?
This compile and i think this means i've got the sdk:
// My first win32.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include <IOSTREAM>
#include <windows.h>
int _tmain(int argc, _TCHAR* argv[])
{
std::cout << "Hello World";
MessageBox(0,L"Hej",L"En ruta",0);
return 0;
}
-
I guess if it has windows.h and that sample builds then at least some of the PSDK is in there. The full versions of VS have usually had PSDK in them, often on another disk labelled MSDN.
Jim
-
Thx for the answer, Was hoping that the paltform SDK was in there since i remember problems i had with 2005 express
-
Right. Platform SDK definitely does not come with 2005 Express. Let's see whether that changes for the next versions of Express :)
Jim