Tech Support > Microsoft Windows > Drivers
Re: PIO Examples
Posted on September 9th, 2003 | 0 Comments

I would recommend a seminar, if you are having problems with the samples in the DDK. Check out www.azius.com, www.oneysoft.com, or www.osronline.com. You should also be a proud owner of Walter Oney's...

PIO Examples
Posted on September 9th, 2003 | 0 Comments

I am very new at writing device drivers and I am busy developing a generic function driver. I am very uncertain about where and how to handle my IRP_MJ_WRITE and -READ IRPs and also about the way...

About a ddk's function
Posted on September 9th, 2003 | 1 Comments

I have a big problem :-> I defined a var. for getting/retrieving the date from RtlTimeToTimeFields(); >> What I wanna do is when the year is either < or > than 2003 the driver must & must...

MC file woes
Posted on September 9th, 2003 | 3 Comments

Hi y'all, I had successfully incorporated an mc file into my driver. My driver wrote System Event log messages which then I could happily decipher; the EventLog registry entry for my driver had...

Re: About IoMapTransfer.
Posted on September 9th, 2003 | 0 Comments

Look at the floppy disk controller (fdc) sample in the DDK. Don Burn (MVP, Windows DDK) Windows 2k/XP/2k3 Filesystem and Driver Consulting "Sudhanshu Deshmukh" <sudhanshudeshmukh402@hotmail.com>...

Re: Copying files using device handles
Posted on September 9th, 2003 | 0 Comments

Wrong approach. LOCK does not invalidate the cached metadata. You need to call LOCK then DISMOUNT, and then copy the file sectorwise (good luck with NTFS with this). Then UNLOCK, then close the...

ORB_POINTER problem with Multiple Different LUN under Firewire
Posted on September 9th, 2003 | 0 Comments

Hi Don Miller (MS DDK Support), Yes, it is a problem that is preventing us from shipping our device later this year. I'm convinced it should be "relative easy" to fix in sbp2port.sys, since it...

Windbg for Windows CE 4.x
Posted on September 9th, 2003 | 4 Comments

Is their someting like Windbg available for Windows CE? All I want to do is read out the DbgPrint information. Thanks, Tom Rixom

setupapi "Add Service: Failed to get configuration of service"
Posted on September 9th, 2003 | 1 Comments

We are sporadically seeing the following error on XP in "setupapi.log" while installing a virtual adapter of our NDIS intermediate driver: #-035 Processing service Add/Delete section . @...

How a driver notify user-mode application?
Posted on September 9th, 2003 | 2 Comments

I got a event in my driver and need to inform my application. If I don't want to poll the driver. How can I do? thanks a lot.

MPIO with WMI
Posted on September 9th, 2003 | 0 Comments

At dsm, there are many routines for WMI, but I dont know how to use this. For example,How to use DsmClearCounters(),or change Load Balance policy with API.

NSIDUIO Sample for Windows CE
Posted on September 9th, 2003 | 4 Comments

Which entry do I use to install the NDISUIO sample for Windows CE.NET? Can I base it on the NDISUIO registry entry found under HKLM/Drivers/Builtin/NDISUIO or do I use the registry entry as shown by...

How determine network itnerface disable status ?
Posted on September 9th, 2003 | 4 Comments

Hi all, I am writing a gui for network adapter config tool like mux example in DDK. In my UI i want to determine if any network component is disabled or not. i can send an ioctl to the lower...

simulating pnp com device id's
Posted on September 9th, 2003 | 2 Comments

i am writing a driver for a serial device that does not exist yet. i want to make sure the driver gets loaded by the windows once i plug in the device. is there a way of simulating pnp com device...

compiling myndi on win98
Posted on September 9th, 2003 | 0 Comments

Hi, i want to use myndi sample from WIn98 ddk. But the readme of myndi says that to get it compile u need a 16 bit compiler.(Microsoft Visual C 1.52c) Is it must for NetDi installer dll or one can...

how to initialize and terminate multithread in dllmain
Posted on September 9th, 2003 | 2 Comments

Hi, all I am trying write a dll which will have two thread A and B. I want to initalize A and B when DLL_PROCESS_ATTACH, to terminate A and B when DLL_PROCESS_DETACH. When initalizing, A create...

RE: Problems with high-speed composite device with interrupt endpoint
Posted on September 9th, 2003 | 6 Comments

Hi Walter, I Am attempting to locate someone who can help with your question... Want to know more? Check out the MSDN Library at http://msdn.microsoft.com or the Microsoft Knowledge Base at...

network card question
Posted on September 9th, 2003 | 1 Comments

When call this function NdisMRegisterMiniport to register NDIS call back function, It's return success so the initial function must be called at first but result is no. Why I can't...

MPEG2 Minidriver Support
Posted on September 8th, 2003 | 0 Comments

Has anyone developed a stream or avstream minidriver to support an MPEG2-based board to use with DirectShow? We have our own newly developed MPEG2- based board. Basically We will be sending NTSC...

User-mode class-specific request?
Posted on September 8th, 2003 | 0 Comments

Hi, Is there any way for a User-Mode Application to send a class-specific request(hid spec 1.1 - section 7.2) to a USB HID device in Windows (with or without the Driver Development Kit)? I am...