Welcome to mirror list, hosted at ThFree Co, Russian Federation.

IsoHeader.cpp « Iso « Archive « 7zip « CPP - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1cd2516c516fffa33ec1ffb68562b05e6e112f5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Archive/Iso/Header.h

#include "StdAfx.h"

#include "IsoHeader.h"

namespace NArchive {
namespace NIso {

const char *kElToritoSpec = "EL TORITO SPECIFICATION\0\0\0\0\0\0\0\0\0";

const char *kMediaTypes[5] =
{
    "NoEmulation"
  , "1.2M"
  , "1.44M"
  , "2.88M"
  , "HardDisk"
};

}}