21 lines
425 B
C
21 lines
425 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* linux/include/linux/hfsplus_raw.h
|
|
*
|
|
* Copyright (C) 1999
|
|
* Brad Boyer (flar@pants.nu)
|
|
* (C) 2003 Ardis Technologies <roman@ardistech.com>
|
|
*
|
|
* Format of structures on disk
|
|
* Information taken from Apple Technote #1150 (HFS Plus Volume Format)
|
|
*
|
|
*/
|
|
|
|
#ifndef _LINUX_HFSPLUS_RAW_H
|
|
#define _LINUX_HFSPLUS_RAW_H
|
|
|
|
#include <linux/types.h>
|
|
#include <linux/hfs_common.h>
|
|
|
|
#endif
|