Use the _wabout function to specify the text in your program's About dialog box. This text will appear in a dialog box if the user chooses the About command from the QuickWin Help menu. For example, QWDEMO.C uses the following line of code:
result = _wabout(“QuickWin Demo”);
Pass the function a pointer to a null-terminated string. The function returns an int. If you don't call the _wabout function, the About dialog box displays an OK button and default information about QuickWin.
The function returns 0 if successful, or a nonzero value if not.