Question
Sign in to vote
0
Sign in to vote
Hi Experts,
I am new to making build environment for “Windows KDMF device driver”. I have a few questions and clarifications.
-
I am using Microsoft Visual Studio Professional 2013. In older driver, which is developed using VS C++ 2005 has “.rc” file and “sources”. That “Sources” file consists files compilation order and include file details. The “RC” file has company Name, version name etc…
-
In VS 2013 I created Windows KDMF device driver template. In that I could not see “Sources” file, either “Sources” file need to create by our own or else.
-
what is the use of “.rc” and “sources” files in vs 2013. How to create and add details in it…?
Regards,
Suresh.S
.rc file usage is exactly the same, it does exactly what it did before. Starting with wdk8 the sources file was replaced with the native VS native project file, vcxproj.
Sent from Outlook Mailhttp: for Windows 10
From: xxxxx@gmail.com
Sent: Thursday, August 20, 2015 11:23 PM
To: Windows System Software Devs Interest List
Subject: [ntdev] Sources and RC file usage in “Microsoft Visual Studio Professional 2013” -KDMF driver
Question
Sign in to vote
0
Sign in to vote
Hi Experts,
I am new to making build environment for “Windows KDMF device driver”. I have a few questions and clarifications.
1) I am using Microsoft Visual Studio Professional 2013. In older driver, which is developed using VS C++ 2005 has “.rc” file and “sources”. That “Sources” file consists files compilation order and include file details. The “RC” file has company Name, version name etc…
2) In VS 2013 I created Windows KDMF device driver template. In that I could not see “Sources” file, either “Sources” file need to create by our own or else.
3) what is the use of “.rc” and “sources” files in vs 2013. How to create and add details in it…?
Regards,
Suresh.S
—
NTDEV is sponsored by OSR
Visit the list at: http://www.osronline.com/showlists.cfm?list=ntdev
OSR is HIRING!! See http://www.osr.com/careers
For our schedule of WDF, WDM, debugging and other seminars visit:
http://www.osr.com/seminars
To unsubscribe, visit the List Server section of OSR Online at http://www.osronline.com/page.cfm?name=ListServer</http:>
xxxxx@gmail.com wrote:
I am new to making build environment for “Windows KDMF device driver”. I have a few questions and clarifications.
-
I am using Microsoft Visual Studio Professional 2013. In older driver, which is developed using VS C++ 2005 has “.rc” file and “sources”. That “Sources” file consists files compilation order and include file details. The “RC” file has company Name, version name etc…
-
In VS 2013 I created Windows KDMF device driver template. In that I could not see “Sources” file, either “Sources” file need to create by our own or else.
-
what is the use of “.rc” and “sources” files in vs 2013. How to create and add details in it…?
There is a tool to convert your “sources” file to a vcxproj, but unless
your “sources” file is unusually complicated, it doesn’t seem to be
worth the trouble. Just create your project within the UI, add the
files you need to compile, and set whatever pre-processor variables you
might need.
I had to go try it to be sure, but you’re right – the default KMDF
driver does not include a resource file. Doesn’t matter – it’s easy to
add. In the UI, right-click on the project and add existing file, then
point to your RC. The UI should recognize it as a resource file.
–
Tim Roberts, xxxxx@probo.com
Providenza & Boekelheide, Inc.
Hi Doron/Roberts,
Thanks for your great support. I will verify with my project solution and let you know the status.
Regards,
Suresh.S