Vp create: Difference between revisions

From Virtual Paradise Wiki
Jump to navigation Jump to search
No edit summary
 
mNo edit summary
 
(9 intermediate revisions by 5 users not shown)
Line 1: Line 1:
<C>VPInstance vp_create()</C>
{{sdk method page|create|Creates a new SDK instance in memory for connecting to a universe and world.
== Description ==
|parameters=
Creates a VP SDK instance.
  {{sdk parameter row|vp_net_config*|net_config|Network configuration for the instance or NULL to use the default select-based implementation. The contents of the structure will be copied.}}
== Example ==
|customparamex=net_config
<C>VPInstance instance;
|noinstanceparam=
instance = vp_create();</C>
|returns=A pointer to the newly created instance, or {{code|NULL}} if something went wrong whilst trying to create one.
|examples=
<syntaxhighlight lang="c">
VPInstance instance;
 
instance = vp_create(NULL);
if (!instance)
  printf("Unable to create instance\n");
</syntaxhighlight>
|seealso=
* {{sdk method|connect_universe}}
* {{sdk method|destroy}}
* {{sdk method|login}}
}}

Latest revision as of 19:18, 1 August 2018

Method call snippet vp_create(net_config);

Creates a new SDK instance in memory for connecting to a universe and world.

Parameters

These are the parameters that this method requires:

Parameter Usage
vp_net_config*
net_config
Network configuration for the instance or NULL to use the default select-based implementation. The contents of the structure will be copied.

Returns

A pointer to the newly created instance, or NULL if something went wrong whilst trying to create one.

Behavior

There is no special behavior for this method

Examples

VPInstance instance;

instance = vp_create(NULL);
if (!instance)
  printf("Unable to create instance\n");

See also