How to enable AnkhSVN on Visual Studio 2013?

Gallery

I would like to set up WinMerge as external Diff and Merge Tools after setting the source control plug-in (you have to install WinMerge first): Visual Studio -> TOOLS -> Options -> Expand the “Source Control” Node Double click on … Continue reading

Incremental Linking (LNK1123) error in VS2010 while building project

Gallery

Question: What is Incremental Linking in Visual Studio 2010? Answer: Please study given link to understand Incremental Linking in visual studio 2010.[Link] http://msdn.microsoft.com/en-us/library/4khtbfyf(v=vs.100).aspx Question: How error looks like while building project on visual studio? Answer: Build error will be looks … Continue reading

How to generate new copy of NDIS_PACKET?

Gallery

Given code is working perfect to generate new copy of NDIS_PACKET, NDIS_STATUS CreateNewSendNdisPacket(IN NDIS_HANDLE SendPacketPoolHandle,                         IN PNDIS_PACKET pkt_old,                         IN PGUINT8 pkt_raw,                         IN GUINT32 pkt_len,                         OUT PNDIS_PACKET * pkt_new) {   NDIS_STATUS Status;   NdisDprAllocatePacket(&Status, pkt_new, SendPacketPoolHandle); … Continue reading

Helpful forums for Microsoft Device Driver

Gallery

While working on Microsoft Device Driver domain, I found following most active and helpful forums, 1) OSR-Online: http://www.osronline.com You can configure OSR-Online forum on email client and given client will be helpful for you. http://www.osronline.com/page.cfm?name=NewsReaderInfo 2) Microsoft NNTP Server: msnews.microsoft.com … Continue reading

How to solve Command line error D8004?

Gallery

I faced given compilation error after convert “Komodia Project” from “VC6” to “VS2K5”. Error    1    Command line error D8004 : ‘/D’ requires an argument    cl Solution: Remove “/D” from “Additional options” (Example image is given below). Path of “Additional options” … Continue reading

How to build DDK source using vs2k5?

Gallery

Special thanks to Hollis Technology Solution to write script for build DDK source with vs2k5. [link] http://www.hollistech.com/Resources/ddkbuild/ddkbuild3_14.zip Following Environment variables need to use DDKBuild v3.14 script with vs2k5. I am using WDK 6001.18002. Don’t open vs2k5 before do following configuration. … Continue reading