-
-
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
3fe29c7
commit d0edd84
Showing
4 changed files
with
84 additions
and
10 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
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
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,44 @@ | ||
#ifndef FVWMLIB_MCOMMS_H | ||
#define FVWMLIB_MCOMMS_H | ||
|
||
#include <stdbool.h> | ||
|
||
#define MCOMMS_NEW_WINDOW 0x0000000000000001ULL | ||
#define MCOMMS_ALL 0xffffffffffffffffULL | ||
|
||
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; | ||
}; | ||
|
||
uint64_t m_register_interest(int *, const char *); | ||
|
||
#endif |
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