summaryrefslogtreecommitdiffstats
path: root/private/unimodem/new/mic/inf.h
blob: 32e1ae85ab94db056d7ec8bcdf9d293fda01998f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
// //		Copyright (c) 1996 Microsoft Corporation
//
//
//		INF.H		-- Header for Classes:
//
//							CInfFile
//
//							CInfVersionSection
//							CInfManufacturerSection
//							CInfInstallSection
//							CInfAddRegSection
//							CInfCopyFilesSection
//
//							CInfManufacturerEntry
//							CInfModelEntry
//							CInfCopyFilesEntry
//							CInfAddRegEntry
//
//							CInfModelEntryAux
//							
//
//		History:
//			05/21/96	JosephJ		Created
//
//


class	CInfVersionSection;
class	CInfManufacturerEntry;
class	CInfManufacturerSection;
class	CInfModelEntry;
class	CInfInstallSection;
class	CInfAddRegSection;
class	CInfAddRegEntry;
class	CInfCopyFilesEntry;
class	CInfCopyFilesSection;
class	CInfModelEntryAux;


// Control flags
const DWORD dwCF_EXCLUDE_FROM_SELECT	= 0x1<<0;


///////////////////////////////////////////////////////////////////////////
//		CLASS CInfFile
///////////////////////////////////////////////////////////////////////////

//	Represents an inf (device information) file -- which is a special kind
//	of INI file.


class CInfFile
{

public:

	CInfFile(void);
	~CInfFile();

	//--------------	Load			------------------
	// Loads the specified file. (Obviously) only one file can be loaded at
	// a time.
	BOOL Load	(const TCHAR rgchPathname[]);

	//--------------	Unload			------------------
	// Unloads a previously loaded file. If there are open sessions to this
	// object, Unload returns a handle which will be signalled when all
	// sessions are closed. New sessions will not be allowed after this
	// function returns. The call should free the handle.
	// See CloseSession for more info.
	HANDLE Unload	(void);

	//--------------	OpenSession		------------------
	// Open a session to this object. The object will not be unloaded until
	// this session is closed. 0 indicates failure.
	// TODO:  unimplemented
	const void *	OpenSession	(void)	const	{return (const void *) 1;}

	//--------------	CloseSession	------------------
	// Close the specified session to this object.
	// If the reference count goes to zero and we're marked for unloading,
	// the object is unloaded as well.
	// TODO:  unimplemented
	void  CloseSession	(const void *)	const	{}

	// ---------------	Dump			------------------
	// Dump state
	void Dump(void) const;

	// ---------------	GetFileName		------------------
	// Get Version info
	const CInfSymbol * GetFileName(void) const
	{
		return m_pSymFileName;
	}

	// ---------------	GetVersion		------------------
	// Get Version info
	const CInfVersionSection * GetVersion(void) const
	{
		return m_pVersion;
	}

	// ---------------	GetFirstManufacturerEntry	------
	// Get first manufacturer entry under the manufacturer section
	const CInfManufacturerEntry * GetFirstManufacturerEntry(void) const
	{
		return m_pFirstManuE;
	}

	#if (TODO)
	// ---------------	GetFirstStringEntry	--------------
	// Get first string entry under the strings section
	const CInfStringEntry * GetFirstStringEntry(void) const;
	DestinationDirs

	// ---------------	LookupManufacturerSection	----------
	// Lookup and return the manufacturer section with the specified name.
	const CInfManufacturerSection *
	LookupInstallSection(const CInfSymbol *pSymManSection)
	const;

	// ---------------	LookupInstallSection	----------
	// Lookup and return the install section with the specified name.
	const CInfInstallSection * LookupInstallSection(const TCHAR pchName[])const;

	// ---------------	LookupAddRegSection	--------------
	// Lookup and return the addreg section with the specifed name.
	const CInfAddRegSection * LookupAddRegSection(const TCHAR  pchName[]) const;

	// ---------------	LookupString		--------------
	// Lookup and return the specified string
	const CInfSymbol * LookupString(const TCHAR pchName[]) const;
#endif // TODO


private:

	// ============= PRIVATE MEMBER FUNCTIONS ===============
	void mfn_EnterCrit(void)	const	{m_sync.EnterCrit();}
	void mfn_LeaveCrit(void)	const	{m_sync.LeaveCrit();}
	void mfn_Cleanup(void);

	// ============= PRIVATE STATIC HELPER FUNCTIONS ========

	static
	const CInfManufacturerEntry *
	sfn_CreateManufacturerList(CIniFile *);

	static
	void
	sfn_DeleteManufacturerList(const CInfManufacturerEntry *);

	// ======================= DATA ========================
	const CInfVersionSection * m_pVersion;
	const CInfManufacturerEntry * m_pFirstManuE;
	const CInfSymbol	* m_pSymFileName;
	CSync m_sync;

	CIniFile *m_pIniFile;

};

///////////////////////////////////////////////////////////////////////////
//		CLASS CInfVersionSection
///////////////////////////////////////////////////////////////////////////

// Sample Version section:
//		[Version]
//		LayoutFile=layout.inf
//		Signature="$CHICAGO$"
//		Class=Modem
//		ClassGUID={4D36E96D-E325-11CE-BFC1-08002BE10318}
//		Provider=%MS%
	
class CInfVersionSection
{

public:

	CInfVersionSection(void)
	{
		m_pSymLayoutFile	= NULL;
		m_pSymSignature		= NULL;
		m_pSymClass			= NULL;;
		m_pSymClassGUID		= NULL;
		m_pSymProvider		= NULL;
		m_dwChecksum		= 0;
	}

	~CInfVersionSection()
	{
	}

	// ---------------	Dump			------------------
	// Dump state
	void Dump(void) const;

	// ---------------	Checksum		------------------
	// Return checksum of contents
	DWORD	Checksum(void)	const
	{
		return m_dwChecksum;
	}

	// ---------------	GetLayoutFile	------------------
	const	CInfSymbol	*	GetLayoutFile	(void)	const
	{
		return m_pSymLayoutFile;
	}

	// ---------------	GetSignature	------------------
	const	CInfSymbol	*	GetSignature	(void)	const
	{
		return m_pSymSignature;
	}

	// ---------------	GetClass		------------------
	const	CInfSymbol	*	GetClass		(void)	const
	{
		return m_pSymClass;
	}

	// ---------------	GetClassGUID	------------------
	const	CInfSymbol	*	GetClassGUID	(void)	const
	{
		return m_pSymClassGUID;
	}

	// ---------------	GetProvider		------------------
	const	CInfSymbol	*	GetProvider		(void)	const
	{
		return m_pSymProvider;
	}


private:

	friend class CInfFile;

	BOOL	Load(const CIniFile *);
	void	Unload(void);

	void mfn_Cleanup(void);

	const	CInfSymbol	*	m_pSymLayoutFile;
	const	CInfSymbol	*	m_pSymSignature;
	const	CInfSymbol	*	m_pSymClass;
	const	CInfSymbol	*	m_pSymClassGUID;
	const	CInfSymbol	*	m_pSymProvider;
	DWORD					m_dwChecksum;


};


///////////////////////////////////////////////////////////////////////////
//		CLASS CInfManufacturerEntry
///////////////////////////////////////////////////////////////////////////

// Sample Manufacturer list section:
//		[Manufacturer]
//		%Generic%     = Generic
//		%MagicRam%    = MagicRam
// 		..

class CInfManufacturerEntry: private CInfList
{

public:

	CInfManufacturerEntry(const CInfManufacturerEntry *pNext)
	: CInfList(NULL, pNext),
	  m_pManuS(NULL),
	  m_pSymManuName(NULL)
	{}

	~CInfManufacturerEntry()	{}

	// ---------------	Dump			------------------
	// Dump state
	void Dump(void) const;

	// ---------------	GetManufacturerSection	----------
	// Get manufacturer section
	const	CInfManufacturerSection	*	GetManufacturerSection	(void)	const
	{
		return m_pManuS;
	}

	// ---------------	GetName			------------------
	// Get manufacturer name (actual manufacturer name, not %xxxx%.)
	const	CInfSymbol				*	GetName					(void)	const
	{
		return m_pSymManuName;
	}

	// ---------------	Next			------------------
	// Get next Entry. NULL if no more...
	const	CInfManufacturerEntry	*	Next(void) const
	{
		return (const CInfManufacturerEntry *) CInfList::Next();
	}

	// ---------------	Load			------------------
	BOOL
	Load(
		const CIniFile *pIniFile,
		const CIniFileSection *pISStr,
		const CIniFileEntry *pIE
	);

	// ---------------	Unload			------------------
	void	Unload(void);

	//--------------	ReverseList		------------------
	// Reverses the implicit list of manufacturer entries
	static void	ReverseList(CInfManufacturerEntry **ppManuE)
	{
		CInfList::ReverseList((const CInfList **) ppManuE);
	}

private:

	void mfn_Cleanup(void);

	const CInfManufacturerSection *m_pManuS;
	const CInfSymbol *m_pSymManuName;

};


///////////////////////////////////////////////////////////////////////////
//		CLASS CInfManufacturerSection
///////////////////////////////////////////////////////////////////////////

// Sample Manufacturer section:
//		[Generic]
//		%Gen%    = Gen,    MDMGEN
//		%Gen3%   = Gen3,   MDMGEN3
//		%Gen12%  = Gen12,  MDMGEN12
//		%Gen24%  = Gen24,  MDMGEN24
//		...

class CInfManufacturerSection
{

public:

	CInfManufacturerSection(void)
	{
		m_eObjSig=eOBJSIG_CInfManufacturerSection;
		m_pSymSectionName	= NULL;
		m_pFirstModelE		= NULL;
	}

	~CInfManufacturerSection()	
	//TODO
	{
		m_eObjSig = eOBJSIG_INVALID;
	}

	// ---------------	Dump			------------------
	// Dump state
	void Dump(void) const;

	// ---------------	GetFirstModelEntry	--------------
	// Get first model entry
	const	CInfModelEntry		*	GetFirstModelEntry	(void)	const;

	// ---------------	GetSectionName	------------------
	// Get section name 
	const	CInfSymbol			*	GetSectionName		(void)	const
	{
		return m_pSymSectionName;
	}

	// ---------------	Load	------------------
	BOOL
	Load
	(
		const CIniFile *pIniFile,
		const CIniFileSection *pISStr,
		const CInfSymbol *pSymManuSection
	);

	// ---------------	Unload			------------------
	void	Unload(void);

	// ---------------	Validate		------------------
	BOOL	Validate(void) const
	{
		// TODO: can place in try-except clause...
		return this && m_eObjSig==eOBJSIG_CInfManufacturerSection;
	}

	#if (TODO)
	// ---------------	GetName			------------------
	// Get manufacturer name (actual manufacturer name), 
	const	CInfSymbol			*	GetName				(void)	const;
	#endif

private:

	void mfn_Cleanup(void);

	// Static helper function
	const	CInfModelEntry		*
	sfn_CreateModelList(
		const CIniFile *pIniFile,
		const CIniFileSection *pISStr,
		const CIniFileSection *pISManuS
		);

	const CInfSymbol *m_pSymSectionName;
	const	CInfModelEntry		*	m_pFirstModelE;
	eOBJSIG m_eObjSig;
};


///////////////////////////////////////////////////////////////////////////
//		CLASS CInfModelEntry
///////////////////////////////////////////////////////////////////////////

// Sample Model entry:
//		%Gen%    = Gen,    MDMGEN

class CInfModelEntry : private CInfList
{

public:

	CInfModelEntry(const CInfModelEntry *pNext)
	: CInfList(NULL, pNext)
	{
		/*TODO*/
		m_dwControlFlags_All		= dwCF_EXCLUDE_FROM_SELECT;
		m_dwControlFlags_NT_All		= dwCF_EXCLUDE_FROM_SELECT;
		m_dwControlFlags_NT_Alpha	= dwCF_EXCLUDE_FROM_SELECT;
		m_dwControlFlags_NT_PPC		= dwCF_EXCLUDE_FROM_SELECT;
		m_dwControlFlags_NT_Mips	= dwCF_EXCLUDE_FROM_SELECT;
	}

	~CInfModelEntry()		{/*TODO*/}

	// ---------------	Dump			------------------
	// Dump state
	void Dump(void) const;


	// ---------------	Load			------------------
	BOOL
	Load(
		const CIniFile *pIniFile,
		const CIniFileSection *pISStr,
		const CIniFileEntry *pIE
	);

	// ---------------	Unload			------------------
	void	Unload(void);

	// ---------------	GetNext			------------------
	// Get next Entry. NULL if no more...
	const	CInfModelEntry	*	Next(void) const
	{
		return (const CInfModelEntry *) CInfList::Next();
	}

	//--------------	ReverseList		------------------
	// Reverses the implicit list of model entries
	static void	ReverseList(CInfModelEntry **ppModelE)
	{
		CInfList::ReverseList((const CInfList **) ppModelE);
	}

	// ---------------	GetLHS			------------------
	// Get next Entry. NULL if no more...
	const	CInfSymbol	*	GetLHS(void) const
	{
		// TODO
		return gSymtab.Lookup(TEXT("%bongo101%"), TRUE);
	}

	// ---------------	GetInstallSection	--------------
	// Get install section
	const	CInfInstallSection	*	GetInstallSection	(void)	const
	{
		return m_pInstallSection;
	}

	// ---------------	GetName			------------------
	// Get model name (actual model name, not %xxx%)
	const	CInfSymbol			*	GetName				(void)	const
	{
		// TODO
		//return m_pSymName;
		return gSymtab.Lookup(TEXT("Christy Brinkly"), TRUE);
	}

	// ---------------	GetRank0ID		------------------
	// Rank-0 ID
	const	CInfSymbol			*	GetRank0ID			(void)	const
	{
		// TODO
		//return m_pSymRank0ID;
		// TODO
		return gSymtab.Lookup(TEXT("RANK-0-ID"), TRUE);

	}

	// ---------------	GetRank1ID		------------------
	// Rank-1 ID
	const	CInfSymbol			*	GetRank1ID			(void)	const
	{
		// TODO
		// return m_pSymRank1ID;
		return gSymtab.Lookup(TEXT("RANK-1-ID"), TRUE);
	}

	// ---------------	GetRank2ID		------------------
	// Rank-2 ID
	const	CInfSymbol			*	GetRank2ID			(void)	const
	{
		// TODO
		// return m_pSymRank2ID;
		return gSymtab.Lookup(TEXT("RANK-2-ID"), TRUE);
	}

	// ---------------	GetControlFlags	-----------------
	// Return install flags (one or more dwCF_* flags) for the specified
	// platform.
	DWORD GetControlFlags(ePLATFORM  ePlat)	const
	{
		DWORD dwRet = 0;

		switch(ePlat)
		{
		case ePLAT_ALL:
			break;
		case ePLAT_NT_ALL:
			dwRet = m_dwControlFlags_NT_All;
			break;

		case ePLAT_NT_ALPHA:
			dwRet = m_dwControlFlags_NT_Alpha;
			break;

		case ePLAT_NT_PPC:
			dwRet = m_dwControlFlags_NT_PPC;
			break;

		case ePLAT_NT_MIPS:
			dwRet = m_dwControlFlags_NT_Mips;
			break;

		default:
			break;
		}

		return dwRet;
	}

private:

	void mfn_Cleanup(void);

	const	CInfInstallSection	*	m_pInstallSection;
		// Pointer to install section

	const	CInfSymbol			*	m_pSymName;
		// Device name

	const	CInfSymbol			*	m_pSymRank0ID;
		// Rank-0 ID	(primary device ID)

	const	CInfSymbol			*	m_pSymRank1ID;
		// Rank-1 ID	(compatible device ID)

	const	CInfSymbol			*	m_pSymRank2ID;
		// Rank-2 ID	(Rank 2 ID)

	DWORD	m_dwControlFlags_All;
		// Install flags (eg exclude from select, needs reboot, etc) that
		// apply to all platforms.

	DWORD	m_dwControlFlags_NT_All;
		// Install flags (eg exclude from select, needs reboot, etc) that
		// apply to all NT platforms.

	DWORD	m_dwControlFlags_NT_Alpha;
		// Install flags (eg exclude from select, needs reboot, etc) that
		// apply to NT Alpha platform.

	DWORD	m_dwControlFlags_NT_PPC;
		// Install flags (eg exclude from select, needs reboot, etc) that
		// apply to NT PPC platform.

	DWORD	m_dwControlFlags_NT_Mips;
		// Install flags (eg exclude from select, needs reboot, etc) that
		// apply to NT MIPS platform.
};



///////////////////////////////////////////////////////////////////////////
//		CLASS CInfInstallSection
///////////////////////////////////////////////////////////////////////////

// Sample Install section:
//		[Modem29]
//		AddReg=All, MfgAddReg, ROCK_VOICE_ALL, ROCK_VOICE_SERWAVE, INTERNAL
//		CopyFiles   = VV_Sys, VV_Sock_Sys, VV_App, VV_Help
//		UpdateInis  = VView.Inis
//		Uninstall   = VoiceView_remove
//
// Also contains info from the related PosDup and NoResDup sections:
//		
// [Modem12.PosDup]
// *PNP0500
// 
// [Modem6.NoResDup]
// UNIMODEMCC646872,UNIMODEMA4970248,UNIMODEMB6071C15
//

class CInfInstallSection
{

public:

	CInfInstallSection(void);
	~CInfInstallSection();

	// ---------------	Dump			------------------
	// Dump state
	void Dump(void) const;

	// ---------------	GetAddRegSectionList	----------
	// Get generic list whose data items are pointers to
	// CInfAddRegSection objects
	const	CInfList		*	GetAddRegSectionList	(void)	const;

	// ---------------	GetCopyFilesSectionList	----------
	// Get generic list whose data items are pointers to
	// CInfCopyFilesSection objects
	const	CInfList		*	GetCopyFilesSectionList	(void)	const;

	// ---------------	GetNoResDupIDList		----------
	// Get generic list whose data items are pointers to
	// InfSymbol objects representing the Rank0 IDs in the corresponding
	// NoResDup section.
	const	CInfList		*	GetNoResDupIDList	(void)	const;

	// ---------------	GetPosDupIDList		----------
	// Get generic list whose data items are pointers to
	// InfSymbol objects representing the Rank0 IDs in the corresponding
	// PosDup section.
	const	CInfList		*	GetPosDupIDList	(void)	const;

	#if (TODO)

	// ---------------	GetUpdateInisSectionList	------
	// Get generic list whose data items are pointers to
	// CInfUpdateInisSection objects
	const	CInfList		*	GetUpdateInisSectionList	(void)	const;

	// ---------------	GetUninstallSectionList		------
	// Get generic list whose data items are pointers to
	// CInfUninstallSection objects
	const	CInfList		*	GetUninstallSectionList	(void)	const;

	// TODO: Also, treat as errors any sections which we don't understand or
	// don't expect in a modem inf file or we don't support in the compiler:
	// eg rename sections, and other fancy INF file constructs.

	#endif // (TODO)

private:

	void mfn_Cleanup(void);
};


///////////////////////////////////////////////////////////////////////////
//		CLASS CInfAddRegSection
///////////////////////////////////////////////////////////////////////////

// Sample AddReg section:
//		[All]
//		HKR,,FriendlyDriver,,Unimodem.vxd
//		HKR,,DevLoader,,*vcomm
//		HKR,,ConfigDialog,,modemui.dll
//		HKR,,EnumPropPages,,"modemui.dll,EnumPropPages"
//		HKR,,PortSubClass,1,02
//		HKR, Init, 1,, "AT<cr>"
//		HKR, Responses, "<cr><lf>OK<cr><lf>", 1, 00, 00, 00,00,00,00, ...etc.
//		HKR, Responses, "<cr><lf>ERROR<cr><lf>", 1, 03, 00, 00,00,00, ...etc.

class CInfAddRegSection
{

public:

	CInfAddRegSection(void)	{/*TODO*/}
	~CInfAddRegSection() 	{/*TODO*/}

	// ---------------	Dump			------------------
	// Dump state
	void
	Dump(void)
	const;

	// ---------------	GetFirstAddRegEntry	--------------
	// Get first addreg entry
	const
	CInfAddRegEntry		*
	GetFirstAddRegEntry	(void)
	const;

private:

	void mfn_Cleanup(void);
};


///////////////////////////////////////////////////////////////////////////
//		CLASS CInfAddRegEntry
///////////////////////////////////////////////////////////////////////////

// Sample AddReg entry:
//		HKR, Init, 1,, "AT<cr>"

class CInfAddRegEntry
{

public:

	CInfAddRegEntry(void)
	{
		// TODO -- faked out

		m_pSymRegRoot = gSymtab.Lookup(TEXT("HKR"), TRUE);
		m_pSymSubKey = gSymtab.Lookup(TEXT("Init"), TRUE);
		m_pSymValueName = gSymtab.Lookup(TEXT("1"), TRUE);
		m_dwFlag = MAXDWORD;
		m_pSymValue = gSymtab.Lookup(TEXT("\"AT<cr>\""), TRUE);
		m_dwChecksum = 1000;
	}

	~CInfAddRegEntry()		{/*TODO*/}

	// ---------------	Dump			------------------
	// Dump state
	void
	Dump(void)
	const
	{
		// TODO: unimplemented
		printf("    HKR, Init, 1,, \"AT<cr>\"\n");
	}

	// ---------------	Checksum		------------------
	// Compute and return checksum of contents
	DWORD
	Checksum(void)
	const
	{
		return m_dwChecksum;
	}

	// ---------------	Next			------------------
	// Get next Entry. NULL if no more...
	const CInfAddRegEntry *
	Next(void)
	const
	{
		// TODO: unimplemented
		return NULL;
	}

	// ---------------	GetRegRoot		------------------
	// Get reg-root-string key (HKR, etc)
	const CInfSymbol *
	GetRegRoot		(void)
	const
	{
		return m_pSymRegRoot;
	}

	// ---------------	GetSubKey		------------------
	// Get sub key, NULL if none.
	const CInfSymbol *
	GetSubKey		(void)
	const
	{
		return m_pSymSubKey;
	}

	// ---------------	GetValueName	------------------
	// Get value-name, NULL if none.
	const	CInfSymbol	*
	GetValueName	(void)
	const
	{
		return m_pSymValueName;
	}

	// ---------------	GetFlag			------------------
	// Get flag-name, MAXDWORD if none.
	DWORD		
	GetFlag		(void)
	const
	{
		return m_dwFlag;
	}

	// ---------------	GetValue		------------------
	// Get value-name, NULL if none.
	// For binary data, this represents a normalized version of the
	// string specified in the inf file: it has the format: "xxyxxyxx.."
	// where xx is 2-digit hex representation of a byte and y is the space
	// character (' '). For ASCII data, the value is the ascii string without
	// the enclosing quotes. Extending '\' characters are processed.
	const	CInfSymbol	*
	GetValue		(void)
	const
	{
		return m_pSymValue;
	}

	#if (TODO)
		... more stuff
	#endif

private:

	void mfn_Cleanup(void);

	const	CInfSymbol	*	m_pSymRegRoot;
	const	CInfSymbol	*	m_pSymSubKey;
	const	CInfSymbol	*	m_pSymValueName;
	const	CInfSymbol	*	m_pSymValue;
	DWORD					m_dwFlag;
	DWORD					m_dwChecksum;
};


///////////////////////////////////////////////////////////////////////////
//		CLASS CInfCopyFilesSection
///////////////////////////////////////////////////////////////////////////

// Sample DestinationDirs section:
//		[DestinationDirs]
//		Register.Copy    = 17     ;LDID_INF
//		VV_Sys           = 11           
//		VV_Sock_Sys      = 11     ;LDID_SYS \Windows\system dir
//		VV_Sock_Win      = 10     ;LDID_WIN \Windows dir
//		VV_App           = 10
//		VV_Help          = 18     ;LDID_HELP

// Sample Copyfiles section:
//		[VV_Sys]
//		fte.dll
//		vvexe32.exe
//		wsvv.vxd

// Note: each CInfCopyFilesEntry object keeps a pointer to its destination
// directory (all the entries for a particular section will have the same
// destination dir, because in the inf, a destination directory is associated
// with an entire section.

class CInfCopyFilesSection
{

public:

	// ---------------	Dump			------------------
	// Dump state
	void Dump(void) const;

	// ---------------	GetFirstCopyFilesEntry	----------
	// Get first copyfiles entry
	const	CInfCopyFilesEntry		*	GetFirstCopyFilesEntry	(void)	const;

	#if (TODO)
	// Following reflect the Copyfiles.NT* extensions. We need to keep
	// this information along with the section.
	enum {PROC_X86, PROC_MIPS, PROC_ALPHA, PROC_PPC} eProcessorType;
	enum {PLAT_NT, , PLAT_WIN9X} ePlatformType;
	#endif // (TODO)

	// TODO: remove following friend declaration once
	// CInfInstallSection::GetCopyFilesList
	// is properly implemented (it currently needs to access this
	// class's constructor.
	// Also, move ~CInfCopyFIlesEntry to protected when done.
	friend class CInfInstallSection;
	~CInfCopyFilesSection()		{/*TODO*/}

protected:

	CInfCopyFilesSection(void)	{/*TODO*/}


private:

	void mfn_Cleanup(void);

};


///////////////////////////////////////////////////////////////////////////
//		CLASS CInfCopyFilesEntry
///////////////////////////////////////////////////////////////////////////

// Sample CopyFiles entry:
//		fte.dll
// Note: each CInfCopyFilesEntry object keeps a pointer to its destination
// directory.
// TODO: keep information about platform & processor as well (see TODO
// notes under CInfCopyFilesSection).

class CInfCopyFilesEntry
{

public:

	// ---------------	Dump			------------------
	// Dump state
	void Dump(void) const
	{
		// TODO: unimplemented
		printf("    fte.dll ; goes to 11\n");
	}

	// ---------------	Checksum		------------------
	// Compute and return checksum of contents
	// Compute and return checksum of contents
	DWORD
	Checksum(void)
	const
	{
		return m_dwChecksum;
	}

	// ---------------	GetNext			------------------
	// Get next Entry. NULL if no more...
	const	CInfCopyFilesEntry	*	Next(void) const
	{
		// TODO: unimplemented
		return NULL;
	}

	// ---------------	GetFileName		------------------
	// Get file name to be copied.
	const	CInfSymbol			*	GetFileName			(void)	const;

	// ---------------	GetDestDir		------------------
	// Get file name to be copied.
	const	CInfSymbol			*	GetDestDir			(void)	const;

	// TODO: remove following friend declaration once
	// CInfCopyFilesSection::GetFirstCopyFilesEntry
	// is properly implemented (it currently needs to access this
	// class's constructor.
	// Also, move ~CInfCopyFIlesEntry to protected when done.
	friend class CInfCopyFilesSection;
	~CInfCopyFilesEntry()		{/*TODO*/}

protected:

	CInfCopyFilesEntry(void)
	{
		// TODO -- faked out
		m_dwChecksum = 1001;
	}

private:

	void mfn_Cleanup(void);

	DWORD					m_dwChecksum;

};

#if 0
pInf->Load("mdmgen.inf");
pManuf = pInf->GetFirstManufacturerEntry();
for(;pManuf; pManuf = pManuf->Next())
{
	pNewDevice = new ModemDevice(pDevice);
	pDevice->Load(pInf, pManuf);
	pDevice->Dump();
	pDevice = pNewDevice;
}
pInf->Unload("
NewSession()
FreeSession()
#endif