File: surface.h

package info (click to toggle)
mako-notifier 1.10.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 496 kB
  • sloc: ansic: 6,081; xml: 240; makefile: 6
file content (12 lines) | stat: -rw-r--r-- 308 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef MAKO_SURFACE_H
#define MAKO_SURFACE_H

#include "config.h"

struct mako_state;
struct mako_surface;

void destroy_surface(struct mako_surface *surface);
struct mako_surface *create_surface(struct mako_state *state, const char *output,
		enum zwlr_layer_shell_v1_layer layer, uint32_t anchor);
#endif