I have this in my .inf:
[Strings]
Driver_Name = "Our driver, build version 1112"
For some reason (better SVN hook compatibility - want to assing build number at each time I commit .sys), want this to be:
[Strings]
DrvVer = "1111";
Driver_Name = "Our driver, build version %DrvVer"
Unfortunately, this doesn't get processed, so %DrvVer%
remains in place; the other idea is to use "%Driver_Name% %DrvVer%"
construct outside of [Strings]
, but don't sure how to join this parts, too.