Add a proxy for the server side output object.

This commit is contained in:
Kristian Høgsberg 2008-12-22 16:37:07 -05:00
parent 0395f30e65
commit 12ea62e211
4 changed files with 45 additions and 18 deletions

View file

@ -86,7 +86,7 @@ WL_EXPORT const struct wl_interface wl_input_device_interface = {
static const struct wl_message output_events[] = {
{ "presence", "uu" },
{ "geometry", "uu" },
};
WL_EXPORT const struct wl_interface wl_output_interface = {
@ -94,3 +94,9 @@ WL_EXPORT const struct wl_interface wl_output_interface = {
0, NULL,
ARRAY_LENGTH(output_events), output_events,
};
WL_EXPORT const struct wl_interface wl_visual_interface = {
"visual", 1,
0, NULL,
0, NULL,
};