Remove unused code
[platform/core/multimedia/libmedia-thumbnail.git] / src / include / ipc / media-thumb-ipc.h
1 /*
2  * libmedia-thumbnail
3  *
4  * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
5  *
6  * Contact: Hyunjun Ko <zzoon.ko@samsung.com>
7  *
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  *
20  */
21
22
23 #include <sys/un.h>
24 #include <sys/stat.h>
25 #include <arpa/inet.h>
26 #include <stdlib.h>
27 #include <string.h>
28 #include <unistd.h>
29 #include <errno.h>
30 #include <signal.h>
31 #include <sys/types.h>
32
33 #include "media-thumb-internal.h"
34 #include "media-util-ipc.h"
35 #include "media-server-ipc.h"
36
37 #ifndef _MEDIA_THUMB_IPC_H_
38 #define _MEDIA_THUMB_IPC_H_
39
40 #define MAX_PATH_SIZE 4096
41
42 int _media_thumb_recv_msg(int sock, int header_size, thumbMsg *msg);
43 int _media_thumb_set_buffer(thumbMsg *req_msg, unsigned char **buf, int *buf_size);
44
45 int _media_thumb_request(int msg_type, const char *origin_path, char *thumb_path, int max_length, uid_t uid);
46 int _media_thumb_request_async(int msg_type, unsigned int request_id, const char *origin_path, thumbUserData *userData, uid_t uid);
47
48 int _media_thumb_request_raw_data_async(int msg_type,
49                                         int request_id,
50                                         const char *origin_path,
51                                         int width,
52                                         int height,
53                                         thumbRawUserData *userData,
54                                         uid_t uid);
55
56 int _media_thumb_request_cancel_all(bool isRaw);
57
58 #endif /*_MEDIA_THUMB_IPC_H_*/