//////////////////////////////////////////////////////////////////////
//  The main for the MFC GUI application
//////////////////////////////////////////////////////////////////////
#include "config.h"
#include "pupguiapp.h"

//////////////////////////////////////////////////////////////////////
// Globals objects.
//
// theApp is an instance of the CPupGuiApp
//
// The CWinApp class is the base class from which you derive a Windows
// application object. An application object provides member functions 
// for initializing your application (and each instance of it) and for 
// running the application.
//
// An application that uses the Microsoft Foundation classes can only 
// contain one object derived from CWinApp. This object is constructed 
// when other C++ global objects are constructed and is already available 
// when Windows calls the WinMain function, which is supplied by the 
// Microsoft Foundation Class Library. Declare your derived CWinApp object
// at the global level.
CPupGuiApp theGuiApp;
PupApp *theApp = &theGuiApp;
//

