Tizen 2.1 base
[platform/framework/web/download-provider.git] / src / agent / include / download-agent-mime-util.h
1 /*
2  * Copyright (c) 2012 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the License);
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an AS IS BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #ifndef _Download_Agent_Mime_Table_H
18 #define _Download_Agent_Mime_Table_H
19
20 #include "download-agent-type.h"
21
22 #define NO_EXTENSION_NAME_STR "dat"
23
24 typedef struct {
25         char *standard;
26         char *normal;
27 } Ext_translation_table;
28
29 da_bool_t is_ambiguous_MIME_Type(const char *in_mime_type);
30 da_bool_t da_get_extension_name_from_url(char *url, char **ext);
31 da_result_t  da_mime_get_ext_name(char *mime, char **ext);
32 da_bool_t da_get_file_name_from_url(char *url, char **name) ;
33 void delete_prohibited_char(char *szTarget, int str_len);
34 #endif