Blame client/Wayland/wlf_disp.h

Packit Service b1ea74
/**
Packit Service b1ea74
 * FreeRDP: A Remote Desktop Protocol Implementation
Packit Service b1ea74
 * Wayland Display Control Channel
Packit Service b1ea74
 *
Packit Service b1ea74
 * Copyright 2018 Armin Novak <armin.novak@thincast.com>
Packit Service b1ea74
 * Copyright 2018 Thincast Technologies GmbH
Packit Service b1ea74
 *
Packit Service b1ea74
 * Licensed under the Apache License, Version 2.0 (the "License");
Packit Service b1ea74
 * you may not use this file except in compliance with the License.
Packit Service b1ea74
 * You may obtain a copy of the License at
Packit Service b1ea74
 *
Packit Service b1ea74
 *     http://www.apache.org/licenses/LICENSE-2.0
Packit Service b1ea74
 *
Packit Service b1ea74
 * Unless required by applicable law or agreed to in writing, software
Packit Service b1ea74
 * distributed under the License is distributed on an "AS IS" BASIS,
Packit Service b1ea74
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
Packit Service b1ea74
 * See the License for the specific language governing permissions and
Packit Service b1ea74
 * limitations under the License.
Packit Service b1ea74
 */
Packit Service b1ea74
#ifndef FREERDP_CLIENT_WAYLAND_DISP_H
Packit Service b1ea74
#define FREERDP_CLIENT_WAYLAND_DISP_H
Packit Service b1ea74
Packit Service b1ea74
#include <freerdp/types.h>
Packit Service b1ea74
#include <freerdp/client/disp.h>
Packit Service b1ea74
Packit Service b1ea74
#include "wlfreerdp.h"
Packit Service b1ea74
Packit Service b1ea74
FREERDP_API BOOL wlf_disp_init(wlfDispContext* xfDisp, DispClientContext* disp);
Packit Service b1ea74
FREERDP_API BOOL wlf_disp_uninit(wlfDispContext* xfDisp, DispClientContext* disp);
Packit Service b1ea74
Packit Service b1ea74
wlfDispContext* wlf_disp_new(wlfContext* wlc);
Packit Service b1ea74
void wlf_disp_free(wlfDispContext* disp);
Packit Service b1ea74
BOOL wlf_disp_handle_configure(wlfDispContext* disp, int32_t width, int32_t height);
Packit Service b1ea74
void wlf_disp_resized(wlfDispContext* disp);
Packit Service b1ea74
Packit Service b1ea74
int wlf_list_monitors(wlfContext* wlc);
Packit Service b1ea74
Packit Service b1ea74
#endif /* FREERDP_CLIENT_WAYLAND_DISP_H */