mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-09 04:07:08 -06:00
Initialer Commit
This commit is contained in:
33
CPP/7zip/UI/Console/ConsoleClose.h
Normal file
33
CPP/7zip/UI/Console/ConsoleClose.h
Normal file
@@ -0,0 +1,33 @@
|
||||
// ConsoleClose.h
|
||||
|
||||
#ifndef __CONSOLE_CLOSE_H
|
||||
#define __CONSOLE_CLOSE_H
|
||||
|
||||
namespace NConsoleClose {
|
||||
|
||||
extern unsigned g_BreakCounter;
|
||||
|
||||
inline bool TestBreakSignal()
|
||||
{
|
||||
#ifdef UNDER_CE
|
||||
return false;
|
||||
#else
|
||||
return (g_BreakCounter != 0);
|
||||
#endif
|
||||
}
|
||||
|
||||
class CCtrlHandlerSetter
|
||||
{
|
||||
public:
|
||||
CCtrlHandlerSetter();
|
||||
virtual ~CCtrlHandlerSetter();
|
||||
};
|
||||
|
||||
class CCtrlBreakException
|
||||
{};
|
||||
|
||||
// void CheckCtrlBreak();
|
||||
|
||||
}
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user