Vp destroy: Difference between revisions

From Virtual Paradise Wiki
Jump to navigation Jump to search
(Created page.)
 
Line 33: Line 33:
* [[vp_create]]
* [[vp_create]]
* [[vp_wait]]
* [[vp_wait]]
[[Category: SDK]]

Revision as of 20:13, 29 July 2012

<C>int vp_destroy(VPInstance instance)</C>

Description

Destroys new VP SDK instance.

Callback

None

Notes

None

Arguments

instance
The SDK instance to destroy.

Argument attributes

None

Return values

VP_RC_SUCCESS
VP_NO_INSTANCE
Invalid instance passed.

Returned attributes

None

Example

<C>// ... int rc; if(rc = vp_destroy(instance))

   printf("Error destroying VP API (reason %d)\n", rc);</C>

See also