8.12.2010 - bug fixes
This commit is contained in:
62
piconsole.h
62
piconsole.h
@@ -104,22 +104,22 @@ private:
|
||||
void status();
|
||||
void checkColumn(uint col) {if (vars().size() < col) {vars().resize(col);}}
|
||||
int bitsValue(unsigned char * src, int offset, int count);
|
||||
void printLine(PIString str, int dx = 0, Flags<PIConsole::Format> format = PIConsole::Normal);
|
||||
int printValue(PIString str, Flags<PIConsole::Format> format = PIConsole::Normal);
|
||||
int printValue(char * str, Flags<PIConsole::Format> format = PIConsole::Normal);
|
||||
int printValue(bool value, Flags<PIConsole::Format> format = PIConsole::Normal);
|
||||
int printValue(int value, Flags<PIConsole::Format> format = PIConsole::Normal);
|
||||
int printValue(long value, Flags<PIConsole::Format> format = PIConsole::Normal);
|
||||
int printValue(llong value, Flags<PIConsole::Format> format = PIConsole::Normal);
|
||||
int printValue(float value, Flags<PIConsole::Format> format = PIConsole::Normal);
|
||||
int printValue(double value, Flags<PIConsole::Format> format = PIConsole::Normal);
|
||||
int printValue(char value, Flags<PIConsole::Format> format = PIConsole::Normal);
|
||||
int printValue(short value, Flags<PIConsole::Format> format = PIConsole::Normal);
|
||||
int printValue(uchar value, Flags<PIConsole::Format> format = PIConsole::Normal);
|
||||
int printValue(ushort value, Flags<PIConsole::Format> format = PIConsole::Normal);
|
||||
int printValue(uint value, Flags<PIConsole::Format> format = PIConsole::Normal);
|
||||
int printValue(ulong value, Flags<PIConsole::Format> format = PIConsole::Normal);
|
||||
int printValue(ullong value, Flags<PIConsole::Format> format = PIConsole::Normal);
|
||||
inline void printLine(const PIString & str, int dx = 0, Flags<PIConsole::Format> format = PIConsole::Normal);
|
||||
inline int printValue(const PIString & str, Flags<PIConsole::Format> format = PIConsole::Normal);
|
||||
inline int printValue(const char * str, Flags<PIConsole::Format> format = PIConsole::Normal);
|
||||
inline int printValue(const bool value, Flags<PIConsole::Format> format = PIConsole::Normal);
|
||||
inline int printValue(const int value, Flags<PIConsole::Format> format = PIConsole::Normal);
|
||||
inline int printValue(const long value, Flags<PIConsole::Format> format = PIConsole::Normal);
|
||||
inline int printValue(const llong value, Flags<PIConsole::Format> format = PIConsole::Normal);
|
||||
inline int printValue(const float value, Flags<PIConsole::Format> format = PIConsole::Normal);
|
||||
inline int printValue(const double value, Flags<PIConsole::Format> format = PIConsole::Normal);
|
||||
inline int printValue(const char value, Flags<PIConsole::Format> format = PIConsole::Normal);
|
||||
inline int printValue(const short value, Flags<PIConsole::Format> format = PIConsole::Normal);
|
||||
inline int printValue(const uchar value, Flags<PIConsole::Format> format = PIConsole::Normal);
|
||||
inline int printValue(const ushort value, Flags<PIConsole::Format> format = PIConsole::Normal);
|
||||
inline int printValue(const uint value, Flags<PIConsole::Format> format = PIConsole::Normal);
|
||||
inline int printValue(const ulong value, Flags<PIConsole::Format> format = PIConsole::Normal);
|
||||
inline int printValue(const ullong value, Flags<PIConsole::Format> format = PIConsole::Normal);
|
||||
static void key_event(void * t, char key);
|
||||
|
||||
struct Variable {
|
||||
@@ -159,21 +159,21 @@ private:
|
||||
};
|
||||
|
||||
inline vector<vector<Variable> > & vars() {return tabs[cur_tab].variables;}
|
||||
inline int couts(PIString v);
|
||||
inline int couts(char * v);
|
||||
inline int couts(bool v);
|
||||
inline int couts(char v);
|
||||
inline int couts(short v);
|
||||
inline int couts(int v);
|
||||
inline int couts(long v);
|
||||
inline int couts(llong v);
|
||||
inline int couts(uchar v);
|
||||
inline int couts(ushort v);
|
||||
inline int couts(uint v);
|
||||
inline int couts(ulong v);
|
||||
inline int couts(ullong v);
|
||||
inline int couts(float v);
|
||||
inline int couts(double v);
|
||||
inline int couts(const string v);
|
||||
inline int couts(const char * v);
|
||||
inline int couts(const bool v);
|
||||
inline int couts(const char v);
|
||||
inline int couts(const short v);
|
||||
inline int couts(const int v);
|
||||
inline int couts(const long v);
|
||||
inline int couts(const llong v);
|
||||
inline int couts(const uchar v);
|
||||
inline int couts(const ushort v);
|
||||
inline int couts(const uint v);
|
||||
inline int couts(const ulong v);
|
||||
inline int couts(const ullong v);
|
||||
inline int couts(const float v);
|
||||
inline int couts(const double v);
|
||||
|
||||
#ifdef WINDOWS
|
||||
void * hOut;
|
||||
|
||||
Reference in New Issue
Block a user