PBORCA_ConfigureSession – PB Docs 2017
PBORCA_ConfigureSession Description PBORCA_ConfigureSession facilitates backward compatibility with PowerBuilder 10. It increases the flexibility of the API and minimizes the changes necessary to other ORCA function signatures. Syntax
|
1 |
INT PBORCA_ConfigureSession ( PBORCA hORCASession, PPBORCA_CONFIG_SESSION pSessionConfig ); |
Argument Description hORCASession Handle to previously established ORCA session. pSessionConfig Structure that lets the ORCA client specify the behavior of subsequent requests. Settings remain in effect for…
About ORCA callback functions – PB Docs 2017
About ORCA callback functions Contents ORCA functions that use callbacks How a callback works Content of a callback function Several ORCA functions require you to code a callback function. A callback function provides a way for the called program (the ORCA DLL or the Library Manager) to execute code in the calling program (the ORCA…
PBORCA_CompileEntryImport – PB Docs 2017
PBORCA_CompileEntryImport Description Imports the source code for a PowerBuilder object into a library and compiles it. Syntax
|
1 2 3 4 5 6 7 8 9 |
INT PBORCA_CompileEntryImport ( HPBORCA hORCASession, Â Â Â LPTSTR lpszLibraryName, Â Â Â LPTSTR lpszEntryName, Â Â Â PBORCA_TYPE otEntryType, Â Â Â Â lpszComments, Â Â Â LPTSTR lpszEntrySyntax, Â Â Â LONG lEntrySyntaxBuffSize, Â Â Â PBORCA_ERRPROC pCompErrorProc, Â Â Â LPVOID pUserData ); |
Argument Description hORCASession Handle to previously established ORCA session. lpszLibraryName Pointer to a string whose value is the file name of the library into which you want to import the object. lpszEntryName Pointer to a string whose…
PBORCA_ExecutableCreate – PB Docs 2017
PBORCA_ExecutableCreate Description Creates a PowerBuilder executable with Pcode or machine code. For a machine code executable, you can request several debugging and optimization options. The ORCA library list is used to create the application. You can specify which of the libraries have already been built as PBDs or DLLs and which will be built into…
Callback function for PBORCA_ObjectQueryReference – PB Docs 2017
Callback function for PBORCA_ObjectQueryReference Description Called for each referenced object in the object being examined. In the callback function, you can save the name of the referenced object for later display. Syntax
|
1 2 |
typedef void (CALLBACK *PBORCA_REFPROC) Â Â Â Â Â Â Â Â Â Â Â Â Â Â ( PPBORCA_REFERENCE, LPVOID ); |
Argument Description PPBORCA_REFERENCE Pointer to the PBORCA_REFERENCE structure (described next) LPVOID Long pointer to user data Return value None. Usage You provide the…
PBORCA_BuildProjectWithOverrides – PB Docs 2017
PBORCA_BuildProjectWithOverrides Description This function is obsolete because EAServer is no longer supported since PowerBuilder 2017. Deploys an EAServer component according to the specifications of the project object, but forces overrides based on argument values you specify. This method is similar to PBORCA_BuildProjectEx, however, it requires additional input values for the server login ID and password,…
PBORCA_SessionSetCurrentAppl – PB Docs 2017
PBORCA_SessionSetCurrentAppl Description Establishes the current Application object for an ORCA session. Syntax
|
1 2 |
INT PBORCA_SessionSetCurrentAppl ( HPBORCA hORCASession, Â Â Â LPTSTR lpszApplLibName, LPTSTR lpszApplName ); |
Argument Description hORCASession Handle to previously established ORCA session lpszApplLibName Pointer to a string whose value is the name of the application library lpszApplName Pointer to a string whose value is the name of the Application object Return value INT. Typical return…
Installing ORCA – PB Docs 2017
Installing ORCA ORCA is available to code partners, tool vendors, and customers who develop companion products and tools that manipulate and manage objects in PowerBuilder libraries for use with PowerBuilder. To run ORCA programs To run programs that use ORCA, you need the ORCA DLL (called PBORC170.DLL in PowerBuilder 2017 R3). When you install PowerBuilder,…