summaryrefslogtreecommitdiff
path: root/Source/Kernel/Core/SB.ns.h
blob: 687be0233c098ce4c42b4198e598608121a6956d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef DEF_SB_NS_H
#define DEF_SB_NS_H

//StatusBar namespace :)
#include <VTManager/SimpleVT.class.h>

namespace SB {
	void init();	//Setup status bar with default 80col configuration
	void reinit();	//Setup status bar querying Disp:: for text screen width
	void gomulti();	//Launch new thread for status bar
	void progress(const String& s);	//Update progress
	void message(const String& s);	//Set a message

}

#endif