blob: 80add2a832d9fb35d9c907a79a8b38fcf716d55b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
//
// hfs_misc.h - hfs routines
//
// Written by Eryk Vershen
//
/*
* Copyright 2000 by Eryk Vershen
*/
#ifndef __hfs_misc__
#define __hfs_misc__
#include "partition_map.h"
//
// Defines
//
//
// Types
//
//
// Global Constants
//
//
// Global Variables
//
//
// Forward declarations
//
char *get_HFS_name(partition_map *entry, int *kind);
#endif /* __hfs_misc__ */
|