Callback function for PBORCA_SccSetTarget – PB Docs 2017
Callback function for PBORCA_SccSetTarget Description Called once for each library in the target library list. Syntax
1 2 |
typedef PBCALLBACK (void, *PBORCA_SETTGTPROC) Â Â Â ( PPBORCA_SETTARGET, LPVOID ); |
Argument Description PPBORCA_SETTARGET Pointer to the PBORCA_SCCSETTARGET structure LPVOID Long pointer to user data Return value None. Usage This callback function allows you to know which libraries are going to be refreshed by default and gives you the…
PBORCA_LINKERR structure – PB Docs 2017
PBORCA_LINKERR structure Description Reports the message text for a link error that has occurred when you build an executable. The PBORCA_ExecutableCreate function passes the PBORCA_LINKERR structure to its callback function. Syntax
1 2 3 |
typedef struct pborca_linkerr { Â Â Â LPTSTR lpszMessageText; } PBORCA_LINKERR, FAR *PPBORCA_LINKERR; |
Member Description lpszMessageText Pointer to the text of the error message Document get from Powerbuilder help Thank you for watching.
PBORCA_DynamicLibraryCreate – PB Docs 2017
PBORCA_DynamicLibraryCreate Description Creates a PowerBuilder dynamic library (PBD) or PowerBuilder DLL. Syntax
1 2 3 4 5 6 7 |
INT PBORCA_DynamicLibraryCreate (    HPBORCA hORCASession,    LPTSTR lpszLibraryName,    LPTSTR lpszPBRName,    LONG lFlags,    LPVOID pbcPara = NULL );  |
Argument Description hORCASession Handle to previously established ORCA session. lpszLibraryName Pointer to a string whose value is the file name of the library to be built into a PBD or DLL. lpszPBRName Pointer to a string whose value is the name of…
PBORCA_DeployWinFormProject – PB Docs 2017
PBORCA_DeployWinFormProject Description Generates and compiles Windows Forms project and deploys the assemblies according to the specifications contained in the project objects. Syntax
1 2 3 4 5 6 7 |
INT PBORCA_DeployWinFormProject (    HPBORCA hORCASession,    LPTSTR lpszLibraryName,    LPTSTR   lpszProjectName,    LPTSTR lpszIconFileName,    PBORCA_DOTNETPROC  pDotNetProc    LPVOID pUserData ); |
Argument Description hORCASession Handle to previously established ORCA session. lpszLibraryName Pointer to a string whose value is the file name containing the project entry. lpszProjectName Project object containing deployment information. lpszIconFileName Name…
Functions for creating executables and dynamic libraries – PB Docs 2017
Functions for creating executables and dynamic libraries These functions allow you to create executables and PowerBuilder Dynamic Libraries (PBDs and DLLs). You can specify the same options for Pcode and machine code and tracing that you can specify in the Project painter. Using ORCA, PBDs or DLLs must be created in a separate step before…
Functions for importing and compiling PowerBuilder objects – PB Docs 2017
Functions for importing and compiling PowerBuilder objects These functions allow you to import new objects into a library from a text listing of their source code and to compile entries that already exist in a library. Entries in a library have both a source code representation and a compiled version. When you import a new…
PBORCA_LibraryEntryInformation – PB Docs 2017
PBORCA_LibraryEntryInformation Description Returns information about an object in a PowerBuilder library. Information includes comments, size of source, size of object, and modification time. Syntax
1 2 3 4 5 |
INT PBORCA_LibraryEntryInformation ( HPBORCA hORCASession,    LPTSTR lpszLibraryName,    LPTSTR lpszEntryName,    PBORCA_TYPE otEntryType,    PPBORCA_ENTRYINFO pEntryInformationBlock ); |
Argument Description hORCASession Handle to previously established ORCA session. lpszLibraryName Pointer to a string whose value is the file name of the library containing the object for which you want…
ORCA Guide – PB Docs 2017
ORCA Guide Appeon PowerBuilder® 2017 R3 FOR WINDOWS DOCUMENT ID: DC37664-01-1700-01 LAST REVISED: July 13, 2018 Copyright © 2018 by Appeon Limited. All rights reserved. This publication pertains to Appeon software and to any subsequent release until otherwise indicated in new editions or technical notes. Information in this document is subject to change without notice. The software…
ORCA Callback Functions and Structures – PB Docs 2017
ORCA Callback Functions and Structures Contents Callback function for compiling objects PBORCA_COMPERR structure Callback function for deploying components to EAServer (Obsolete) PBORCA_BLDERR structure Callback function for PBORCA_LibraryDirectory PBORCA_DIRENTRY structure Callback function for PBORCA_ObjectQueryHierarchy PBORCA_HIERARCHY structure Callback function for PBORCA_ObjectQueryReference PBORCA_REFERENCE structure Callback function for PBORCA_ExecutableCreate PBORCA_LINKERR structure Callback function for PBORCA_SccSetTarget PBORCA_SCCSETTARGET structure About this…
Content of a callback function – PB Docs 2017
Content of a callback function The processing that occurs in the callback function is entirely up to you. This section illustrates a simple way of handling it. UserData buffer In this example, the UserData buffer is a structure with a field whose value points to the actual message buffer. Other fields keep track of the…