Constructs a CXllApp object
[C++]
CXllApp(
const char* lpszAppName = NULL
);
A null-terminated string that contains the application name that Windows uses. If this argument is not supplied or is NULL, CWinApp uses the resource string AFX_IDS_APP_TITLE or the filename of the executable file.
Constructs a CXllApp object and passes lpszAppName to be stored as the application name.
You should construct one global object of your CXllApp-derived class.
You can have only one CXllApp object in your application.
The constructor stores a pointer to the CXllApp object so that WinMain
can call the object's member functions to initialize and run the application.
Header: xllplus.h