News:

MASM32 SDK Description, downloads and other helpful links
MASM32.com New Forum Link
masmforum WebSite

Loading a VXD with createfile in XP SP2

Started by ToutEnMasm, April 11, 2005, 02:48:05 PM

Previous topic - Next topic

ToutEnMasm

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

Opcode

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

ToutEnMasm