home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: SysTools / SysTools.zip / taman002.zip / TASKMANA.ZIP / src / kAbout.cpp < prev    next >
C/C++ Source or Header  |  2000-04-29  |  1KB  |  43 lines

  1. /* $Id: kAbout.cpp,v 1.1 2000/04/29 19:06:34 stknut Exp $
  2.  *
  3.  * kAbout dialog.
  4.  *
  5.  * Copyright (c) 1999-2000 knut st. osmundsen
  6.  *
  7.  */
  8.  
  9. /*******************************************************************************
  10. *   Defined Constants And Macros                                               *
  11. *******************************************************************************/
  12. #define INCL_WINERRORS
  13. #define INCL_WINDIALOG
  14. #define INCL_WININPUT
  15. #define INCL_WINDIALOGS
  16. #define INCL_WINFRAMEMGR
  17.  
  18. /*******************************************************************************
  19. *   Header Files                                                               *
  20. *******************************************************************************/
  21. #include <os2.h>
  22. #ifdef USE_KLIB
  23.     #include <kAssert.h>
  24.     #include <kLog.h>
  25.     #include <kHeap.h>
  26. #endif
  27. #include "kError.h"
  28. #include "kDlgBase.h"
  29. #include "kClickDlg.h"
  30. #include "kAbout.h"
  31. #include "kTaskMgr_defs.h"
  32.  
  33. /**
  34.  * Invokes the About dialog.
  35.  * @returns   TRUE / FALSE according to the result.
  36.  * @param     hwndOwner  handle of owner.
  37.  */
  38. BOOL invokeAboutDlg(HWND hwndOwner)
  39. {
  40.    return kClickDlg::invoke(hwndOwner, DL_ABOUT, NULLHANDLE);
  41. }
  42.  
  43.