mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-08 14:07:00 -06:00
22 lines
292 B
C++
Executable File
22 lines
292 B
C++
Executable File
// 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"
|
|
};
|
|
|
|
}}
|