News:

Download Pelles C here: http://www.smorgasbordet.com/pellesc/

Main Menu

opening windows.h

Started by MT, May 29, 2008, 09:57:59 PM

Previous topic - Next topic

MT

In trying to understand C a little better, i wanted to look at the contents of windows.h. When I try to open it in the IDE with
"Add Files to Project..."
I get the error mesage:
Unable to add the file "windows.h" to the project. The target file cannot be determined from the source files extension"

What does this mean?

in another project I see the header files under a sub folder
"Include Files"

How do I create this sub folder?

Stefan Pendl

The standard Windows header files can not be included in the project directly, they are included through the #include directive in the code.
You can add the line #include <windows.h> in the code, click on <window.h> with the right mouse button and select Open windows.h from the context menu.
---
Stefan

Proud member of the UltraDefrag Development Team

DMac

Actually, to view the included file in the IDE you must use the following syntax:

#include "windows.h"

using
#include <windows.h> causes the project to incorporate the header but the IDE will not display it.
No one cares how much you know,
until they know how much you care.

JohnF

Quote from: DMac on May 30, 2008, 05:14:15 PM
Actually, to view the included file in the IDE you must use the following syntax:

#include "windows.h"

using
#include <windows.h> causes the project to incorporate the header but the IDE will not display it.

No, that's no right. Using #include <windows.h> works fine when using right mouse button.

John

TimoVJL

Quotein another project I see the header files under a sub folder
"Include Files"
Copy that directory below your project directory.
Look at that FooTest.

May the source be with you

DMac

John wrote:
QuoteNo, that's no right. Using #include <windows.h> works fine when using right mouse button.

Here I've been using Pelles IDE for several years and doing things the hard way.   :-\

Thanks for the tip.
No one cares how much you know,
until they know how much you care.