1/*
2	Copyright 1999-2001, Be Incorporated.   All Rights Reserved.
3	This file may be used under the terms of the Be Sample Code License.
4*/
5
6#ifndef MIME_TYPES_H
7#define MIME_TYPES_H
8
9struct ext_mime {
10	char *extension;
11	char *mime;
12};
13
14extern struct ext_mime mimes[];
15
16#endif
17