📄 stafinternalprocess.h
字号:
/*****************************************************************************//* Software Testing Automation Framework (STAF) *//* (C) Copyright IBM Corp. 2001 *//* *//* This software is licensed under the Common Public License (CPL) V1.0. *//*****************************************************************************/#ifndef STAF_InternalProcess#define STAF_InternalProcess#ifdef __cplusplus#include "STAFString.h"// Do not reference; not exportedextern char *gSTAFProcessShellSubstitutionChars;// Defines a structure to receive process shell command substitution datastruct STAFProcessShellSubstitutionData{ STAFString command; STAFString title; STAFString workload; STAFString stdinfile; STAFString stdoutfile; STAFString stderrfile; STAFString username; STAFString password;};STAFRC_t STAFProcessValidateShellSubstitutionChars(const STAFString &shellCmd);STAFRC_t STAFProcessReplaceShellSubstitutionChars(const STAFString &shellCmd, const STAFProcessShellSubstitutionData &data, STAFString &output);#endif#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -