Skip to content

Commit

Permalink
1
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasAdam committed Dec 22, 2024
1 parent 0df3b67 commit ac94704
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions libs/mcomms.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
#ifndef FVWMLIB_MCOMMS_H
#define FVWMLIB_MCOMMS_H

#include <stdarg.h>
#include <stdbool.h>

struct m_add_window {
char *window;
int title_height;
int border_width;

struct {
int window;
int x;
int y;
int width;
int height;
} frame;

struct {
int base_width;
int base_height;
int inc_width;
int inc_height;
int orig_inc_width;
int orig_inc_height;
int min_width;
int min_height;
int max_width;
int max_height;
} hints;

struct {
int layer;
int desktop;
int window_type;
} ewmh;
};

bool m_register_interest(int *, const char *, ...);

#endif

0 comments on commit ac94704

Please sign in to comment.