.NET
wincedd.txt
Associated article: Windows CE Device Driver Development, Part II
Tags: .NET
Published source code accompanying the article by James Y. Wilson in which he identififies the basic skills you need to develop Windows CE device drivers, and implements a driver for an onboard peripheral device.
Windows CE Device Driver Development, Part II by James Y. Wilson Example 1: (a) MyDriversData.pBuffer1 = MapPtrToProcess(pCallerBuffer1,GetCurrentProcess()); MyDriversData.pBuffer2 = MapPtrToProcess(pCallerBuffer2,GetCurrentProcess()); (b) MyDriversData.pBuffer1 = MapPtrToProcess(pCallerBuffer1,GetCallerProcess()); MyDriversData.pBuffer2 = MapPtrToProcess(pCallerBuffer2,GetCallerProcess()); Listing One // This constant contains a ...


