1/*
2 * Copyright 2004, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
3 * Distributed under the terms of the MIT License.
4 */
5#ifndef _MIME_TYPES_H
6#define _MIME_TYPES_H
7
8
9#include <Mime.h>
10
11
12// Additional MIME types that are not defined in Mime.h but are
13// standard values. We should move them into a public space some
14// day.
15
16#define	B_DIRECTORY_MIME_TYPE	"application/x-vnd.Be-directory"
17#define	B_VOLUME_MIME_TYPE		"application/x-vnd.Be-volume"
18#define	B_SYMLINK_MIME_TYPE		"application/x-vnd.Be-symlink"
19#define	B_ROOT_MIME_TYPE		"application/x-vnd.Be-root"
20
21#endif	/* _MIME_TYPES_H */
22