Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
2.0 KiB

  1. /*
  2. +-------------------------------------------------------------------------+
  3. | About Box Routine |
  4. +-------------------------------------------------------------------------+
  5. | (c) Copyright 1993-1994 |
  6. | Microsoft Corp. |
  7. | All rights reserved |
  8. | |
  9. | Program : [AboutBox.c] |
  10. | Programmer : Arthur Hanson |
  11. | Original Program Date : [Jul 27, 1993] |
  12. | Last Update : [Jun 18, 1994] |
  13. | |
  14. | Version: 1.00 |
  15. | |
  16. | Description: |
  17. | About box code, nuff said. |
  18. | |
  19. | |
  20. | History: |
  21. | arth Jun 18, 1994 1.00 Original Version. |
  22. | |
  23. +-------------------------------------------------------------------------+
  24. */
  25. #include "globals.h"
  26. #include <shellapi.h>
  27. extern TCHAR szAppName[];
  28. /*+-------------------------------------------------------------------------+
  29. | AboutBox_Do()
  30. |
  31. +-------------------------------------------------------------------------+*/
  32. void AboutBox_Do(HWND hDlg) {
  33. ShellAbout(hDlg, szAppName, szAppName, LoadIcon(hInst, szAppName));
  34. } // AboutBox_Do