The MASM Forum Archive 2004 to 2012

General Forums => The Campus => Topic started by: ToutEnMasm on April 11, 2005, 02:48:05 PM

Title: Loading a VXD with createfile in XP SP2
Post by: ToutEnMasm on April 11, 2005, 02:48:05 PM
Hello,
I study the Iczelion Tutorials on VXD.
I use,
invoke CreateFile,addr VxDName,0,0,OPEN_EXISTING,0,FILE_FLAG_DELETE_ON_CLOSE,0
This code is the code in the tutorial,the VXD is unchanged.
The path is correct, I test it with findfirstfile.
I have only the message,"incorrect parameters".
If somebody can help me ?
                               ToutEnMasm
Title: Re: Loading a VXD with createfile in XP SP2
Post by: Opcode on April 11, 2005, 03:40:39 PM
VxD don't works in Windows NT, 2000, XP and 2003 Server.

To create drivers for windows XP you need to learn WDM device driver programming.
Is very different from VxD.

Learn more at:
http://www.website.masmforum.com/tutorials/kmdtute/

Regards,
Opcode
Title: Re: Loading a VXD with createfile in XP SP2
Post by: ToutEnMasm on April 11, 2005, 04:06:54 PM
Thanks
             ToutEnMasm