Topic: windows.h missing

I dont know nothing about plugin making, but I need compiled bone-manipulation plugin.
I downloaded few examples from here: http://www.maratis3d.org/?page_id=53 and Im trying to compile them with Visual c++ 2005 Express. It says:
-fatal error C1083: Cannot open include file: 'windows.h': No such file or directory
-fatal error C1083: Cannot open include file: 'MEngine.h': No such file or directory
So I dont get DLL file

What Im doing wrong?

Re: windows.h missing

Hi,

- for windows.h try installing the platform SDK : http://www.microsoft.com/en-us/download … x?id=11310

- for MEngine.h, add Maratis SDK include directory to the additional include path in your visual studio project, so the compiler can find the header files.

other tips : https://developer.valvesoftware.com/wik … der_VS2005

Re: windows.h missing

Works fine now. Thanks for your help, specially that wiki link.