mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-18 15:05:47 -04:00
Initial community commit
This commit is contained in:
22
Src/Wasabi/api/wnd/deactivatemgr.h
Normal file
22
Src/Wasabi/api/wnd/deactivatemgr.h
Normal 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
|
Reference in New Issue
Block a user