// Base Header file for RDBCreate // Platform Includes #define WIN32_LEAN_AND_MEAN // Exclude rarely-used parts of windows headers #include // Standard Namespaces #include // Std I/O // Application Includes #include "AppRunSettings.h" // Application Settings #include "..\DXCommon\ExecEnvironment.h" // Execution Run-Time #include "..\DXCommon\DesignManager.h" // Design Manager // Identification Constants #define APP_NAME "RDBCreate" #define APP_TITLE "Remote Databse Creator" #define APP_VERSION "1.1.2" // Application Constants // Return codes #define APPRC_NOERROR 0 // Everything copacetic #define APPRC_WARN 4 // Execution ok, but warnings issued #define APPRC_ERROR 8 // Execution completed with errors #define APPRC_FATAL 16 // Execution could not be completed // Informational Messages #define MSG_CDB0033I "CDB0033I: Loading database design elements from the Internet, please wait....." #define MSG_CDB0034I "CDB0034I: The database design has been applied to the database." #define MSG_CDB0036I "CDB0036I: Using Runtime Version: %s." #define MSG_CDB0037I "CDB0037I: Using Design Manager Version: %s." #define MSG_CDB0038I "CDB0038I: The database title has been set to '%s'." #define MSG_CDB0039I "CDB0039I: The database '%s' has been built on '%s'." // Error Messages #define MSG_CDB0030S "CDB0030S: Unable to start program execution." #define MSG_CDB0031S "CDB0031S: Unable to close down the runtime environment." #define MSG_CDB0032E "CDB0032E: Unable to load the design manifest, processing abandoned." #define MSG_CDB0035E "CDB0035E: Errors were experienced while loading designs, database is incomplete."