// dial_init.h #ifndef dial__dial_init_H #define dial__dial_init_H // David Adams // August 2003 // // Initialization for DIAL using the enviroment at startup or // that provided by the user. // // DIAL_UIDS must be defined. class Environment; namespace dial { // Initialize DIAL. // Nonzero argument is intended for testing. // Otherwise the environment at startup is used. // Returns 0 for success. int dial_init(const Environment* penv =0); } // end namespace dial #endif