Skip to content

Commit

Permalink
fix WM_STATE var for recent debugger
Browse files Browse the repository at this point in the history
  • Loading branch information
mathieujobin committed Feb 28, 2023
1 parent 08125bc commit 4fb1592
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 4 additions & 1 deletion enlightenment.h
Expand Up @@ -159,7 +159,10 @@ struct sigaction
typedef struct ewn EWin;
typedef struct icn Icon;

Atom WM_STATE;
#ifndef WM_STATE_DEFINED
#define WM_STATE_DEFINED
extern Atom WM_STATE;
#endif

struct icn
{
Expand Down
2 changes: 2 additions & 0 deletions main.c
@@ -1,5 +1,7 @@
#include "enlightenment.h"

Atom WM_STATE;

/* this just cleans up after dead child processes.... */
void Reap() {
int status;
Expand Down

0 comments on commit 4fb1592

Please sign in to comment.