Step 2: Define the classes and functions in the extension

PowerBuilder Native Interface

Step 2: Define the classes and functions in the extension

PBXEXPORT LPCTSTR PBXCALL PBX_GetDescription()
{
   static const TCHAR desc[] = {
      "class myvisualext from userobject\n"
      "subroutine func_1(int arg1, int arg2)\n"
      "subroutine func_2(string arga)\n"
      "end class\n"
   };

return desc;
}