Changeset 5075 in orxonox.OLD for trunk/src/util/shell.h
- Timestamp:
- Aug 19, 2005, 3:21:27 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/util/shell.h
r5074 r5075 10 10 #include "event_listener.h" 11 11 12 #include <stdio.h>13 12 #include <stdarg.h> 14 15 13 16 14 // FORWARD DECLARATION … … 44 42 // BUFFER // 45 43 void flushBuffers(); 46 void addBufferLine(const char* Line, va_list args); 44 static bool addBufferLineStatic(const char* line, ...); 45 void addBufferLine(const char* line, va_list arg); 47 46 void moveBuffer(int lineCount); 48 47 const char* getBufferLine(unsigned int lineNumber); … … 81 80 tList<Text>* bufferText; //!< A list of stored bufferTexts for the display of the buffer 82 81 Text* inputLineText; //!< The inputLine of the Shell 82 83 char bufferArray[10000]; //!< a BUFFER for fast writing 84 83 85 }; 84 86
Note: See TracChangeset
for help on using the changeset viewer.