| Lasso Reference Manual | ||||
|---|---|---|---|---|
Figure 18. Schema fragment for lib:Scoping
<xs:complexType name="ScopingType">
<xs:sequence>
<xs:element name="ProxyCount" type="xs:nonNegativeInteger" minOccurs="0"/>
<xs:element ref="IDPList" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:element name="Scoping" type="ScopingType"/>
typedef struct {
/* <xs:element name="ProxyCount" type="xs:nonNegativeInteger" minOccurs="0"/> */
int ProxyCount;
/* <xs:element ref="IDPList" minOccurs="0"/> */
LassoLibIDPList *IDPList;
} LassoLibScoping;
LassoLibScoping* lasso_lib_scoping_new (void);
Creates a new LassoLibScoping object.
| Returns : | a newly created LassoLibScoping object |