Changeset 9676 for code/trunk/src/libraries/core/command/IOConsoleWindows.h
- Timestamp:
- Sep 29, 2013, 4:27:05 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/libraries/core/command/IOConsoleWindows.h
r8858 r9676 80 80 void printOutputLine(const std::string& line, Shell::LineType type, const COORD& pos); 81 81 82 static inline COORD makeCOORD( int x, inty)82 static inline COORD makeCOORD(SHORT x, SHORT y) 83 83 { 84 84 COORD val = {x, y}; 85 return val; 86 } 87 88 static inline SMALL_RECT makeSMALL_RECT(SHORT left, SHORT top, SHORT right, SHORT bottom) 89 { 90 SMALL_RECT val = {left, top, right, bottom}; 85 91 return val; 86 92 }
Note: See TracChangeset
for help on using the changeset viewer.