mirror of
https://github.com/WinampDesktop/winamp.git
synced 2024-12-04 04:42:06 -05:00
19 lines
285 B
C++
19 lines
285 B
C++
#ifndef __CONSOLE_H
|
|
#define __CONSOLE_H
|
|
|
|
class ConsoleEnum;
|
|
|
|
class Console {
|
|
public:
|
|
|
|
static void outputString(int severity, const char *string);
|
|
static void reset();
|
|
|
|
private:
|
|
|
|
static ConsoleEnum *console;
|
|
static int needscan;
|
|
static int noconsole;
|
|
};
|
|
|
|
#endif
|