remove stuff we won't need
[pcsx_rearmed.git] / win32 / gui / AboutDlg.c
diff --git a/win32/gui/AboutDlg.c b/win32/gui/AboutDlg.c
deleted file mode 100644 (file)
index b8d348e..0000000
+++ /dev/null
@@ -1,68 +0,0 @@
-/*  Pcsx - Pc Psx Emulator\r
- *  Copyright (C) 1999-2003  Pcsx Team\r
- *\r
- *  This program is free software; you can redistribute it and/or modify\r
- *  it under the terms of the GNU General Public License as published by\r
- *  the Free Software Foundation; either version 2 of the License, or\r
- *  (at your option) any later version.\r
- *\r
- *  This program is distributed in the hope that it will be useful,\r
- *  but WITHOUT ANY WARRANTY; without even the implied warranty of\r
- *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
- *  GNU General Public License for more details.\r
- *\r
- *  You should have received a copy of the GNU General Public License\r
- *  along with this program; if not, write to the Free Software\r
- *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1307 USA\r
- */\r
-\r
-#include <windows.h>\r
-#include <windowsx.h>\r
-#include "resource.h"\r
-#include "AboutDlg.h"\r
-#include "psxcommon.h"\r
-\r
-char *LabelAuthors = { N_(\r
-       "PCSX - A PlayStation Emulator\n\n"\r
-       "Original Authors:\n"\r
-       "main coder: linuzappz\n"\r
-       "co-coders: shadow\n"\r
-       "ex-coders: Nocomp, Pete Bernett, nik3d\n"\r
-       "Webmaster: AkumaX")\r
-};\r
-\r
-char *LabelGreets = { N_(\r
-       "PCSX-df Authors:\n"\r
-       "Ryan Schultz, Andrew Burton, Stephen Chao,\n"\r
-       "Marcus Comstedt, Stefan Sikora\n\n"\r
-       "PCSX-Reloaded By:\n"\r
-       "Blade_Arma, Wei Mingzhi, et al.\n\n"\r
-       "http://pcsxr.codeplex.com/")\r
-};\r
-\r
-LRESULT WINAPI AboutDlgProc(HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam) {\r
-       switch (uMsg) {\r
-               case WM_INITDIALOG:\r
-                       SetWindowText(hDlg, _("About"));\r
-\r
-                       Button_SetText(GetDlgItem(hDlg, IDOK), _("OK"));\r
-                       Static_SetText(GetDlgItem(hDlg, IDC_PCSX_ABOUT_TEXT), _("PCSX EMU\n"));\r
-                       Static_SetText(GetDlgItem(hDlg, IDC_PCSX_ABOUT_AUTHORS), _(LabelAuthors));\r
-                       Static_SetText(GetDlgItem(hDlg, IDC_PCSX_ABOUT_GREETS), _(LabelGreets));\r
-                       Button_SetText(GetDlgItem(hDlg,IDOK), _("OK"));\r
-                       return TRUE;\r
-\r
-               case WM_COMMAND:\r
-                       switch (wParam) {\r
-                               case IDOK:\r
-                                       EndDialog(hDlg, TRUE);\r
-                                       return TRUE;\r
-                       }\r
-                       break;\r
-\r
-               case WM_CLOSE:\r
-                       EndDialog(hDlg, TRUE);\r
-                       return TRUE;\r
-       }\r
-       return FALSE;\r
-}\r