libfreerdp-utils: add wait_obj module.
[platform/upstream/freerdp.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 struct wait_obj* wait_obj_new(void);
24 void wait_obj_free(struct wait_obj* obj);
25 int wait_obj_is_set(struct wait_obj* obj);
26 void wait_obj_set(struct wait_obj* obj);
27 void wait_obj_clear(struct wait_obj* obj);
28 int wait_obj_select(struct wait_obj** listobj, int numobj, int timeout);
29 void wait_obj_get_fds(struct wait_obj* obj, void** fds, int* count);
30
31 #endif