17 lines
175 B
C++
17 lines
175 B
C++
#pragma once
|
|
#ifndef CRYFS_LIB_IMPL_MAGICNUMBERS_H_
|
|
#define CRYFS_LIB_IMPL_MAGICNUMBERS_H_
|
|
|
|
namespace cryfs {
|
|
|
|
enum MagicNumbers {
|
|
DIR = 0x00,
|
|
FILE = 0x01
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|