mirror of https://github.com/FreeRDP/FreeRDP
66 lines
2.0 KiB
C
66 lines
2.0 KiB
C
/**
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
|
* RAIL Window List
|
|
*
|
|
* Copyright 2011 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
|
*
|
|
* 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 FREERDP_RAIL_WINDOW_LIST_H
|
|
#define FREERDP_RAIL_WINDOW_LIST_H
|
|
|
|
#include <freerdp/api.h>
|
|
#include <freerdp/types.h>
|
|
#include <freerdp/update.h>
|
|
|
|
#include <winpr/stream.h>
|
|
|
|
typedef struct rdp_window_list rdpWindowList;
|
|
|
|
#include <freerdp/rail/rail.h>
|
|
#include <freerdp/rail/window.h>
|
|
|
|
struct rdp_window_list
|
|
{
|
|
rdpRail* rail;
|
|
rdpWindow* head;
|
|
rdpWindow* tail;
|
|
rdpWindow* iterator;
|
|
};
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
FREERDP_API void window_list_rewind(rdpWindowList* list);
|
|
FREERDP_API BOOL 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 void window_list_clear(rdpWindowList* list);
|
|
|
|
FREERDP_API rdpWindowList* window_list_new(rdpRail* rail);
|
|
FREERDP_API void window_list_free(rdpWindowList* list);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* FREERDP_RAIL_WINDOW_LIST_H */
|