GetNativeInterface
From PowerBuilder Native Interface
IPB_Session interface:
GetNativeInterface method
Description
Syntax
GetNativeInterface(pbobject obj)Return Values
Examples
long f_retrieve(IPB_Session* session, pbint iarg,
pbobject dwObj, pbobject extObj)
{
Imy_pbni* pImy_pbni = NULL;
pblong lRet;
if (session -> IsNativeObject(extObj) )
{
pImy_pbni = (Imy_pbni*) session ->
GetNativeInterface(extObj);
lRet = pImy_pbni-> f_Retrieve(session,
iarg, dwObj);
}
return lRet;
}