Remove sync request
[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 <arpa/inet.h>
25 #include <stdlib.h>
26 #include <string.h>
27 #include <unistd.h>
28 #include <errno.h>
29 #include <signal.h>
30 #include <sys/types.h>
31
32 #include "media-thumb-internal.h"
33 #include "media-util-ipc.h"
34 #include "media-server-ipc.h"
35
36 #ifndef _MEDIA_THUMB_IPC_H_
37 #define _MEDIA_THUMB_IPC_H_
38
39 #define MAX_PATH_SIZE 4096
40
41 int _media_thumb_recv_msg(int sock, int header_size, thumbMsg *msg);
42 int _media_thumb_set_buffer(thumbMsg *req_msg, unsigned char **buf, int *buf_size);
43
44 int _media_thumb_request_async(int msg_type, unsigned int request_id, const char *origin_path, thumbUserData *userData, uid_t uid);
45
46 int _media_thumb_request_raw_data_async(int msg_type,
47                                         int request_id,
48                                         const char *origin_path,
49                                         int width,
50                                         int height,
51                                         thumbRawUserData *userData,
52                                         uid_t uid);
53
54 int _media_thumb_request_cancel_all();
55
56 #endif /*_MEDIA_THUMB_IPC_H_*/