Win2k inf file

I’m writing an Win2k inf file that will install a driver that work on a
variety of products. In each product specific section, there are entries
that are identical for all products. In the interest of maintenance, I’d
like to put all of these identical entries into one section and reference
that section. Here’s an example of how it looks now:

[Manufacturer]
“MyComp” = MyProducts

[MyProducts]
Device1 = Device1Params, …
Device2 = Device2Params, …
Device3 = Device3Params, …

[Device1Params]
Characteristics = 0xff
BusType = 5
DriverVer = 09/01/1999, 1.2.3.4
… ; device 1 specific stuff

[Device2Params]
Characteristics = 0xff
BusType = 5
DriverVer = 09/01/1999, 1.2.3.4
… ; device 2 specific stuff

[Device3Params]
Characteristics = 0xff
BusType = 5
DriverVer = 09/01/1999, 1.2.3.4
… ; device 3 specific stuff

Since the first n entries in each device specific section is going to be
identical, I’d like to put them in their own section and reference that
section instead of copying lines.

Thanks in advance for your help,
John