-
-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0df3b67
commit ac94704
Showing
1 changed file
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |