Move Process_makeCommandStr to global Process implementation

This commit is contained in:
Benny Baumann
2021-04-10 13:31:39 +02:00
committed by BenBE
parent c0d0202440
commit bcb18ef822
5 changed files with 386 additions and 382 deletions

View File

@ -372,4 +372,10 @@ int Process_compareByKey_Base(const Process* p1, const Process* p2, ProcessField
// Avoid direct calls, use Process_getCommand instead
const char *Process_getCommandStr(const Process *this);
/* This function constructs the string that is displayed by
* Process_writeCommand and also returned by Process_getCommandStr */
void Process_makeCommandStr(Process *this);
void Process_writeCommand(const Process *this, int attr, int baseAttr, RichString *str);
#endif