Git conversion: Make reactos the root directory, move rosapps, rostests, wallpapers...
[reactos.git] / reactos / base / applications / rapps / aboutdlg.c
diff --git a/reactos/base/applications/rapps/aboutdlg.c b/reactos/base/applications/rapps/aboutdlg.c
deleted file mode 100644 (file)
index 932faa4..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-/*
- * PROJECT:         ReactOS Applications Manager
- * LICENSE:         GPL - See COPYING in the top level directory
- * FILE:            base/applications/rapps/aboutdlg.c
- * PURPOSE:         About Dialog
- * PROGRAMMERS:     Dmitry Chapyshev (dmitry@reactos.org)
- */
-
-#include "rapps.h"
-
-static
-INT_PTR CALLBACK
-AboutDlgProc(HWND hDlg, UINT Msg, WPARAM wParam, LPARAM lParam)
-{
-    switch (Msg)
-    {
-        case WM_COMMAND:
-        {
-            switch (LOWORD(wParam))
-            {
-                case IDOK:
-                    EndDialog(hDlg, LOWORD(wParam));
-                    break;
-            }
-        }
-        break;
-    }
-
-    return FALSE;
-}
-
-VOID
-ShowAboutDialog(VOID)
-{
-    DialogBox(hInst,
-              MAKEINTRESOURCE(IDD_ABOUT_DIALOG),
-              hMainWnd,
-              AboutDlgProc);
-}