stafinternalprocess.h

来自「Software Testing Automation Framework (S」· C头文件 代码 · 共 39 行

H
39
字号
/*****************************************************************************//* 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 + =
减小字号Ctrl + -
显示快捷键?