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;
}