I am trying to parse INF file of drivers in my code to identify the OS architecture supported by them. For this I'm referring to the "INF MANUFACTURER SECTION" link:
http://msdn.microsoft.com/en-us/library/windows/hardware/ff547454(v=vs.85).aspx
I have an Driver INF File which has a manufacturer section as:
[Manufacturer]
%HSD%=HSD,NTAMD64
according to the manufacturer section documentation given in the above link, the INF Model Section name must be decorated with the supported architecture and hence, "NTAMD64" suggests that the Driver is valid for a 64-bit Windows Operating System. But what does "HSD" suggest?
Which operating system does it refer to? How to indentify this?