]> git.proxmox.com Git - mirror_edk2.git/blob - EdkCompatibilityPkg/Sample/Tools/Source/ProcessDsc/FWVolume.h
Add in the 1st version of ECP.
[mirror_edk2.git] / EdkCompatibilityPkg / Sample / Tools / Source / ProcessDsc / FWVolume.h
1 /*++
2
3 Copyright (c) 2004, Intel Corporation
4 All rights reserved. This program and the accompanying materials
5 are licensed and made available under the terms and conditions of the BSD License
6 which accompanies this distribution. The full text of the license may be found at
7 http://opensource.org/licenses/bsd-license.php
8
9 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
11
12 Module Name:
13
14 FWVolume.h
15
16 Abstract:
17
18 Include file for the module that keeps track of files for the firmware
19 volumes.
20
21 --*/
22
23 #ifndef _FW_VOLUME_H_
24 #define _FW_VOLUME_H_
25
26 //
27 // class CFirmwareVolume
28 // {
29 // public:
30 //
31 void
32 CFVConstructor (
33 VOID
34 )
35 ;
36 void
37 CFVDestructor (
38 VOID
39 )
40 ;
41
42 int
43 CFVAddFVFile (
44 char *Name,
45 char *ComponentType,
46 char *FVs,
47 int ComponentsInstance,
48 char *FFSExt,
49 char *Processor,
50 char *Apriori,
51 char *BaseName,
52 char *Guid
53 )
54 ;
55
56 int
57 CFVSetXRefFileName (
58 char *FileName
59 )
60 ;
61
62 int
63 CFVWriteInfFiles (
64 DSC_FILE *DSC,
65 FILE *MakeFptr
66 )
67 ;
68
69 int
70 NonFFSFVWriteInfFiles (
71 DSC_FILE *DSC,
72 char *FileName
73 )
74 ;
75
76 #endif // ifndef _FW_VOLUME_H_