mirror of
https://github.com/quamotion/dotnet-packaging.git
synced 2026-02-16 05:44:46 +00:00
19 lines
373 B
C#
19 lines
373 B
C#
namespace Packaging.Targets.Rpm
|
|
{
|
|
/// <summary>
|
|
/// Specifies whether an ELF file is 32-bit or 64-bit.
|
|
/// </summary>
|
|
internal enum ElfClass : byte
|
|
{
|
|
/// <summary>
|
|
/// The file is 32-bit.
|
|
/// </summary>
|
|
Elf32 = 1,
|
|
|
|
/// <summary>
|
|
/// The file is 64-bit.
|
|
/// </summary>
|
|
Elf64 = 2
|
|
}
|
|
}
|