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