Hi,
I have recently started working on an existing project using SVS SDK. We have some portion of code which does the global program capture.
It looks something like this.
private void StartCapture(string guid)
{
UInt32 result = FSL2.startCapture(guid, false, 0, false);
if (result != FSL2.ERROR_SUCCESS)
{
throw new AppPackagingException(AppPackagingException.ErrorReason.UnableToStartCapture,
"Error starting application capture: " + result, result);
}// Remember the guid of the layer that will be in capturing state
this.SaveCaptureLayerGuid(guid);}
The question is how I can use the function FSL2.startCapture() to do single program capture? How can I pass in the executable filename and its parameters?
I tried to look up the FSLLIB.HLP, but it is really too brief. Is there any full documentation of the SDK?
thanks a lot!
danny
Comments
This is what you're looking
This is what you're looking for:
https://www-secure.symantec.com/connect/articles/virtualization-sdk-documentation
If a forum post solves your problem please flag is as the solution
Would you like to reply?
Login or Register to post your comment.