Advertisement
Guest User

cmdline.xpp

a guest
Apr 22nd, 2012
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.71 KB | None | 0 0
  1. Сравнение файлов cmdline.hpp и cndline.hpp_23.04.2012
  2. ***** cmdline.hpp
  3.                 virtual void DisplayObject();
  4.                 int ProcessOSCommands(const string& CmdLine,bool SeparateWindow, bool &PrintCommand);
  5. ***** cndline.hpp_23.04.2012
  6.                 virtual void DisplayObject();
  7.                 int strnewlinei;
  8.                 int ProcessOSCommands(const string& CmdLine,bool SeparateWindow, bool &PrintCommand);
  9. *****
  10.  
  11. Сравнение файлов cmdline.cpp и cndline.cpp_23.04.2012
  12. ***** cmdline.cpp
  13.         TruncPathStr(strTruncDir,(X2-X1)/2);
  14.         GotoXY(X1,Y1);
  15.         SetColor(COL_COMMANDLINEPREFIX);
  16. ***** cndline.cpp_23.04.2012
  17.         TruncPathStr(strTruncDir,(X2-X1)/2);
  18.         GotoXY(X1,Y1-strnewlinei);
  19.         SetColor(COL_COMMANDLINEPREFIX);
  20. *****
  21.  
  22. ***** cmdline.cpp
  23.         {
  24.                 string strFormatStr, strExpandedFormatStr;
  25. ***** cndline.cpp_23.04.2012
  26.         {
  27.                 strnewlinei=0;
  28.                 string strFormatStr, strExpandedFormatStr;
  29. *****
  30.  
  31. ***** cmdline.cpp
  32.                                                 }
  33.                                         }
  34. ***** cndline.cpp_23.04.2012
  35.                                                 }
  36.                                                 case L'_': // $_ - Carriage return and linefeed
  37.                                                         {
  38.                                                         //newlinestrDestStr = strDestStr.GetLength();
  39.                                                         strnewlinei++;
  40.                                                         break;
  41.                                                 }
  42.                                         }
  43. *****
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement