Pseudo code usage

This documentation includes pseudo code to show how an experienced programmer can implement the features of Bank Wizard. You cannot compile the code as it is shown, it shows the call sequence NOT the exact syntax that you need to use. You also need to add your own business logic to the code.

For example, the pseudo code to determine if branch data is available would be:

if(BWIGetValue(handle,BWI_V_DATA)) {

  /* Process data */

}

In C, you would need to write this as:

long hasData;

BWICGetValue(handle,BWI_V_DATA,&hasData)

if(hasData) {

  /* Process data */

}

In Java, you would write:

if(handle.getValue(BWIHandle.V_DATA)) {

  /* Process Data */

}

For the specific calling syntax required, refer to the Programming language specific information and the example code supplied.

The examples also include the yourLogBWCondition pseudo function. You must write this function to log the conditions returned by Bank Wizard.