internalGetXMLID

In case an XML file is loaded the XML ID values are kept in memory and can be retrieved through this API call

Syntax

//
//   Strong typing definition
//
const char      * internalGetXMLID(
                        SdaiInstance            instance,
                        const char              ** XMLID
                    );

static  inline  const char  * internalGetXMLID(
                                    SdaiInstance            instance,
                                    char                    ** XMLID
                                )
{
    return  internalGetXMLID(
                    instance,
                    (const char**) XMLID
                );
}

static  inline  const char  * internalGetXMLID(
                                    SdaiInstance            instance
                                )
{
    return  internalGetXMLID(
                    instance,
                    (const char**) nullptr              //    XMLID
                );
}


//
//   Weak typing definition
//
const char  __declspec(dllexport) * __stdcall   internalGetXMLID(
                                                        int_t                   instance,
                                                        const char              ** XMLID
                                                    );

static  inline  const char  * internalGetXMLID(
                                    int_t                   instance,
                                    char                    ** XMLID
                                )
{
    return  internalGetXMLID(
                    instance,
                    (const char**) XMLID
                );
}

static  inline  const char  * internalGetXMLID(
                                    int_t                   instance
                                )
{
    return  internalGetXMLID(
                    instance,
                    (const char**) nullptr              //    XMLID
                );
}
    

Property instance

Size: 32 bit / 4 byte (value)
...

Property XMLID

Size: 32 bit / 4 byte (reference)
...