473,387 Members | 1,721 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

ntifs.h help

ddk
I have DDK 3790 installed and I'm trying to compile some code but I
always get an error
...... ntifs.h is there!(C:\WINDDK\3790\ifs\w2k\ntifs.h)
(BUILD Version: 0097)
I just copied the files from another computer.... maybe I need to do an
install. (don't have the orignal prog)
Is there a way to set ntifs.h to work?

Error
c:\cesource\BKKernel\BKDrvr.c(9) : fatal error C1083: Cannot open
include file: 'C:\WINDDK\3790\ifs\ntifs.h': No such file or directory
Code/snip
/*
MSJDrvr.C - 1998 James M. Finnegan - Microsoft Systems Journal

This module implements all of the IOCTLs described in the accompanying
article*/

#include "C:\WINDDK\3790\ifs\ntifs.h"
#include "BKFunc.h"
#define HDESK ULONG
#define HWND ULONG
#define DWORD ULONG
#define UINT ULONG
#define FILE_DEVICE_UNKNOWN 0x00000022
#define IOCTL_UNKNOWN_BASE FILE_DEVICE_UNKNOWN

Jul 22 '05 #1
6 6995
* dd*@msn.com:

I'm trying to compile some code but I always get an error
Ouch.

Shoot that compiler.
Error
c:\cesource\BKKernel\BKDrvr.c(9) : fatal error C1083: Cannot open
include file: 'C:\WINDDK\3790\ifs\ntifs.h': No such file or directory


This probably means that there is no such file or directory.

--
A: Because it messes up the order in which people normally read text.
Q: Why is it such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?
Jul 22 '05 #2
> ..... ntifs.h is there!(C:\WINDDK\3790\ifs\w2k\ntifs.h)
[...]
c:\cesource\BKKernel\BKDrvr.c(9) : fatal error C1083: Cannot open
include file: 'C:\WINDDK\3790\ifs\ntifs.h': No such file or directory


Well, those two paths are NOT the same.

On top of that, it's a bad idea to include headers with absolute paths in
general. For exactly those reasons.
Jul 22 '05 #3
ddk
Matthias Käppler wrote:
..... ntifs.h is there!(C:\WINDDK\3790\ifs\w2k\ntifs.h)


[...]
c:\cesource\BKKernel\BKDrvr.c(9) : fatal error C1083: Cannot open
include file: 'C:\WINDDK\3790\ifs\ntifs.h': No such file or directory

Well, those two paths are NOT the same.

On top of that, it's a bad idea to include headers with absolute paths in
general. For exactly those reasons.


I'm new, can you spoon feed me as to how I should include the headers?

Thanks... your a lot sharper than Alf P .......LOL

Jul 22 '05 #4
You really shouldn't be copying ntifs.h from somebody else's system when you
don't have a license to use that file.

It's part of the Windows Installable File Systems Development Kit, if I
recall, which you have to PAY to get.

There is a free version from the GNU project that would probably work as
well.

Jul 22 '05 #5
ddk
Chuck McDevitt wrote:
You really shouldn't be copying ntifs.h from somebody else's system when you
don't have a license to use that file.

It's part of the Windows Installable File Systems Development Kit, if I
recall, which you have to PAY to get.

There is a free version from the GNU project that would probably work as
well.


Buck I am new and didn't have to copy the files(even that I own the
other box), just didn't include them in the install!!
I know I should not smoke or drink or speed or breath contaminated air

I'm dumb>>>>> and no one asked that question... got the free ver
couldn't get it to work

-path fixed..thanks Matt
-how I should include the headers?
Jul 22 '05 #6
dd*@msn.com wrote:
Matthias Käppler wrote:
..... ntifs.h is there!(C:\WINDDK\3790\ifs\w2k\ntifs.h)


[...]
c:\cesource\BKKernel\BKDrvr.c(9) : fatal error C1083: Cannot open
include file: 'C:\WINDDK\3790\ifs\ntifs.h': No such file or directory

Well, those two paths are NOT the same.

On top of that, it's a bad idea to include headers with absolute paths in
general. For exactly those reasons.


I'm new, can you spoon feed me as to how I should include the headers?

Thanks... your a lot sharper than Alf P .......LOL


You have to tell the compiler in which paths he should look for header
files. The way this is done depends on which compiler you're using.
For gcc (and mingw32 respectively), you have to specify the include
directories with -Ixyz.
Then you can simply #include <ntifs.h> and the compiler will figure out
itself where to look for this header.
For MSVC++ I don't know, check out the documentation for more details.

- Matthias
Jul 22 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

21
by: Dave | last post by:
After following Microsofts admonition to reformat my system before doing a final compilation of my app I got many warnings/errors upon compiling an rtf file created in word. I used the Help...
6
by: wukexin | last post by:
Help me, good men. I find mang books that introduce bit "mang header files",they talk too bit,in fact it is my too fool, I don't learn it, I have do a test program, but I have no correct doing...
0
by: ddk | last post by:
I have DDK 3790 installed and I'm trying to compile some code but I always get an error ...... ntifs.h is there!(C:\WINDDK\3790\ifs\w2k\ntifs.h) (BUILD Version: 0097) I just copied the files from...
3
by: Colin J. Williams | last post by:
Python advertises some basic service: C:\Python24>python Python 2.4.1 (#65, Mar 30 2005, 09:13:57) on win32 Type "help", "copyright", "credits" or "license" for more information. >>> With...
7
by: Corepaul | last post by:
Missing Help Files When I enter "recordset" as the keyword and search the Visual Basic Help index, I get many topics of interest in the resulting list. But there isn't any information available...
5
by: Steve | last post by:
I have written a help file (chm) for a DLL and referenced it using Help.ShowHelp My expectation is that a developer using my DLL would be able to access this help file during his development time...
8
by: Mark | last post by:
I have loaded Visual Studio .net on my home computer and my laptop, but my home computer has an abbreviated help screen not 2% of the help on my laptop. All the settings look the same on both...
10
by: JonathanOrlev | last post by:
Hello everybody, I wrote this comment in another message of mine, but decided to post it again as a standalone message. I think that Microsoft's Office 2003 help system is horrible, probably...
1
by: trunxnirvana007 | last post by:
'UPGRADE_WARNING: Array has a new behavior. Click for more: 'ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?keyword="9B7D5ADD-D8FE-4819-A36C-6DEDAF088CC7"' 'UPGRADE_WARNING: Couldn't resolve...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.