/** * FreeRDP: A Remote Desktop Protocol Client * RAIL Window List * * Copyright 2011 Marc-Andre Moreau * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef __RAIL_WINDOW_LIST_H #define __RAIL_WINDOW_LIST_H #include #include #include #include typedef struct rdp_window_list rdpWindowList; #include #include struct rdp_window_list { rdpRail* rail; rdpWindow* head; rdpWindow* tail; rdpWindow* iterator; }; FREERDP_API void window_list_rewind(rdpWindowList* list); FREERDP_API boolean window_list_has_next(rdpWindowList* list); FREERDP_API rdpWindow* window_list_get_next(rdpWindowList* list); FREERDP_API rdpWindow* window_list_get_by_id(rdpWindowList* list, uint32 windowId); FREERDP_API rdpWindow* window_list_get_by_extra_id(rdpWindowList* list, void* extraId); FREERDP_API void window_list_create(rdpWindowList* list, WINDOW_ORDER_INFO* orderInfo, WINDOW_STATE_ORDER* window_state); FREERDP_API void window_list_update(rdpWindowList* list, WINDOW_ORDER_INFO* orderInfo, WINDOW_STATE_ORDER* window_state); FREERDP_API void window_list_delete(rdpWindowList* list, WINDOW_ORDER_INFO* orderInfo); FREERDP_API rdpWindowList* window_list_new(rdpRail* rail); FREERDP_API void window_list_free(rdpWindowList* list); #endif /* __RAIL_WINDOW_LIST_H */