From 86d5deed7b935c4e0d6625dd2240b7eb9fa137df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Wed, 10 Mar 2004 13:40:35 +0000 Subject: [PATCH] Some additional standard MIME types in the Be world. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@6944 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/private/storage/MimeTypes.h | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 headers/private/storage/MimeTypes.h diff --git a/headers/private/storage/MimeTypes.h b/headers/private/storage/MimeTypes.h new file mode 100644 index 0000000000..08b21f0214 --- /dev/null +++ b/headers/private/storage/MimeTypes.h @@ -0,0 +1,21 @@ +/* +** Copyright 2004, Axel Dörfler, axeld@pinc-software.de. All rights reserved. +** Distributed under the terms of the OpenBeOS License. +*/ +#ifndef _MIME_TYPES_H +#define _MIME_TYPES_H + + +#include + + +// Additional MIME types that are not defined in Mime.h but are +// standard values. We should move them into a public space some +// day. + +#define B_DIRECTORY_MIME_TYPE "application/x-vnd.Be-directory" +#define B_VOLUME_MIME_TYPE "application/x-vnd.Be-volume" +#define B_SYMLINK_MIME_TYPE "application/x-vnd.Be-symlink" +#define B_ROOT_MIME_TYPE "application/x-vnd.Be-root" + +#endif /* _MIME_TYPES_H */