Initial community commit

This commit is contained in:
Jef 2024-09-24 14:54:57 +02:00
parent 537bcbc862
commit fc06254474
16440 changed files with 4239995 additions and 2 deletions

View file

@ -0,0 +1,22 @@
#ifndef __APPDEACTIVATIONMGR_H
#define __APPDEACTIVATIONMGR_H
#include <bfc/ptrlist.h>
class ifc_window;
class AppDeactivationMgr {
public:
static int is_deactivation_allowed(ifc_window *w);
static void push_disallow(ifc_window *w);
static void pop_disallow(ifc_window *w);
static void setbypass(int i);
private:
static PtrList<ifc_window> list;
};
#endif