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: b3e418bbc2e16ea176d4cda4196afd157dc0bdda (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 wchar_t *kMediaTypes[5] =
{
  L"NoEmulation",
  L"1.2M",
  L"1.44M",
  L"2.88M",
  L"HardDisk"
};

}}