EFileType
- Last UpdatedJun 09, 2017
- 1 minute read
Describes the type of file that is in the PIM file repository. PIM uses this to determine how to install the file.
enum EFileType
{
eUndefinedFileType = 0,
eNormal = 1,
eComDLL = 2,
eComEXE = 3,
eNTService = 4,
eMergeRegistryScript = 5,
eForHTMLEditor = 6,
eDictionary = 7,
eMsiMergeModule = 8,
eNETFrameworkAssembly
}
Members
eForHTMLEditor
File is an HTML editor code module file. Store in Vendorname\Primitive GUID subdirectory instead of Vendorname subdirectory.
eNormal
Normal file. Do nothing extra except install file.
eMsiMergeModule
File is an MSI merge module, which will be merged into an installable MSI file.
eComEXE
File is a COM local server .EXE. Run "<filename> /RegServer".
eUndefinedFileType
eComDLL
File is a COM in-proc server .DLL. Run regsvr32 on the file.
eNETFrameworkAssembly
File is a .NET Framework assembly.
eDictionary
File is an ArchestrA Dictionary file.
eNTService
File is an NT Service .EXE. Run "<filename> -Service".
eMergeRegistryScript
File is a .REG registry script. Merge it into system registry.