Fix changelog email address
[freerdp-ubuntu-pcb-backport.git] / include / freerdp / utils / wait_obj.h
1 /**
2  * FreeRDP: A Remote Desktop Protocol client.
3  * Virtual Channel Manager
4  *
5  * Copyright 2009-2011 Jay Sorg
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *     http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  */
19
20 #ifndef __WAIT_OBJ_UTILS
21 #define __WAIT_OBJ_UTILS
22
23 #include <freerdp/api.h>
24
25 FREERDP_API struct wait_obj* wait_obj_new(void);
26 FREERDP_API struct wait_obj* wait_obj_new_with_fd(void* fd);
27 FREERDP_API void wait_obj_free(struct wait_obj* obj);
28 FREERDP_API int wait_obj_is_set(struct wait_obj* obj);
29 FREERDP_API void wait_obj_set(struct wait_obj* obj);
30 FREERDP_API void wait_obj_clear(struct wait_obj* obj);
31 FREERDP_API int wait_obj_select(struct wait_obj** listobj, int numobj, int timeout);
32 FREERDP_API void wait_obj_get_fds(struct wait_obj* obj, void** fds, int* count);
33
34 #endif