summaryrefslogtreecommitdiffstats
path: root/other-licenses/7zstub/src/CPP/7zip/UI/Console/ConsoleClose.h
blob: 0a0bbf0e0a1f84c32ca357abbad16cda3ac69cf0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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