Video Screencast Help
Search Video Help Close Back
to help
Not able to make it to Vision this year? Get a sampling in the Best of Vision on Demand group.

SVS SDK function to do Single Program Capture

Updated: 20 Dec 2011 | 1 comment
dannyw's picture
0 0 Votes
Login to vote
This issue has been solved. See solution.

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

Jordan's picture
20
Oct
2011
1 Vote +1
Login to vote

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