本文整理汇总了C++中CApaCommandLine::SetProcessEnvironmentL方法的典型用法代码示例。如果您正苦于以下问题:C++ CApaCommandLine::SetProcessEnvironmentL方法的具体用法?C++ CApaCommandLine::SetProcessEnvironmentL怎么用?C++ CApaCommandLine::SetProcessEnvironmentL使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CApaCommandLine
的用法示例。
在下文中一共展示了CApaCommandLine::SetProcessEnvironmentL方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1:
/**
@SYMTestCaseID UIF-TCone7Step-TestWindowPositionL
@SYMDEF PDEF109812: Draw optimization assumes children's position are relative to parent's
@SYMTestCaseDesc Launches the twindowposition application.
The application test for position of the non window owning control being drawn.
@SYMTestPriority High
@SYMTestStatus Implemented
@SYMTestActions : Launches an test application as follows.
Instantiates a CApaCommandLine object. Creates the application KAppFileName using RProcess object
and sets the process environment. Resumes the process and tests for application's exit reason.
The test application draw the controls such that when the child has a parent window and is not
relative to the the parent control's window.
@SYMTestExpectedResults The test application should be started without any error.
The test application exit with KErrNone if the position of the child window being drawn matches
with co-ordinate space of the parent control. Otherwise it exit with KErrWindowPosDoesNotMatch.
@SYMTestType : CIT
*/
TBool CCone7TestAppUi::TestWindowPositionL()
{
_LIT(KAppFileName,"z:\\sys\\bin\\twindowposition.exe");
CApaCommandLine* cmdLine = CApaCommandLine::NewLC();
RProcess windowPos;
TInt ret = windowPos.Create(KAppFileName,KNullDesC);
TEST(ret == KErrNone);
User::LeaveIfError(ret);
CleanupClosePushL(windowPos);
INFO_PRINTF1(_L("Create twindowposition process."));
//attach commandline to twindowposition process
TRAP(ret,cmdLine->SetProcessEnvironmentL(windowPos));
TEST(ret == KErrNone);
windowPos.Resume();
//Time for the twindowposition process to launch itself
User::After(3000000);
TEST(windowPos.ExitReason() != KErrWindowPosDoesNotMatch);
CleanupStack::PopAndDestroy(&windowPos);
CleanupStack::PopAndDestroy(cmdLine);
return ETrue;
}