📄 stafprocosutil.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_ProcOSUtil#define STAF_ProcOSUtil#include "STAFString.h"// Defines a structor for passing performance parametersstruct STAFPerfInfo{ unsigned int maxFiles;};// Sets system configuration appropriate with performance data// If successful, returns 0// If unsuccessful, retruns >0, errorBuffer will be set with a descriptive// string, and osRC will be set to an error code relating to the message in// errorBuffer.unsigned int makePerformanceAdjustments(STAFPerfInfo perfInfo, STAFString &errorBuffer, unsigned int &osRC);// Performs OS Specific Initializationunsigned int STAFProcOSInit(STAFString &errorBuffer, unsigned int &osRC);// Performs Lock On Data Directoryunsigned int STAFProcOSLockDataDir(STAFString &errorBuffer, unsigned int &osRC);// Performs OS Specific Terminationunsigned int STAFProcOSTerm(STAFString &errorBuffer, unsigned int &osRC);#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -