emulator.h
=============================================================================

    This is file has the prototypes for two EXTREMELY important functions.
    You must use them in every program that uses PB-Lib or else some of
    the functions will definitely fail, possibly with disastrous results!

    The first function, proboard_emulator_init() will initialize the
    emulator which makes available the SDK global variables to all routines.
    For EXE files, the PBLIB.INI file will be scanned to determine the
    initial values of some of the variables, as well which user record
    to load from the userbase. For more information, refer to the tutorial
    and the sample PBLIB.INI file provided. You must call this function
    as the first statement in your main() routine. Some functions, especially
    the ones prefixed with 'pb_' will fail to work if you don't do this.

    proboard_emulator_term() will shut down the emulator, releasing all
    memory allocated during the setup process. You must call this function
    immediately prior to program termination. It is NOT safe to call any
    of the routines in PB-Lib prefixed with 'pb_' after this function is
    called. Some data will be definitely invalidated by the call.

