summaryrefslogtreecommitdiffstats
path: root/private/nw/convert/nwconv/aboutbox.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--private/nw/convert/nwconv/aboutbox.c39
1 files changed, 39 insertions, 0 deletions
diff --git a/private/nw/convert/nwconv/aboutbox.c b/private/nw/convert/nwconv/aboutbox.c
new file mode 100644
index 000000000..d44a898d4
--- /dev/null
+++ b/private/nw/convert/nwconv/aboutbox.c
@@ -0,0 +1,39 @@
+/*
+ +-------------------------------------------------------------------------+
+ | About Box Routine |
+ +-------------------------------------------------------------------------+
+ | (c) Copyright 1993-1994 |
+ | Microsoft Corp. |
+ | All rights reserved |
+ | |
+ | Program : [AboutBox.c] |
+ | Programmer : Arthur Hanson |
+ | Original Program Date : [Jul 27, 1993] |
+ | Last Update : [Jun 18, 1994] |
+ | |
+ | Version: 1.00 |
+ | |
+ | Description: |
+ | About box code, nuff said. |
+ | |
+ | |
+ | History: |
+ | arth Jun 18, 1994 1.00 Original Version. |
+ | |
+ +-------------------------------------------------------------------------+
+*/
+
+#include "globals.h"
+#include <shellapi.h>
+
+extern TCHAR szAppName[];
+
+/*+-------------------------------------------------------------------------+
+ | AboutBox_Do()
+ |
+ +-------------------------------------------------------------------------+*/
+void AboutBox_Do(HWND hDlg) {
+
+ ShellAbout(hDlg, szAppName, szAppName, LoadIcon(hInst, szAppName));
+
+} // AboutBox_Do