2009-05-23 06:11:48 +00:00
|
|
|
/* PadNull
|
|
|
|
* Copyright (C) 2004-2009 PCSX2 Team
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
2009-05-23 05:15:03 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <windows.h>
|
|
|
|
#include <windowsx.h>
|
|
|
|
|
|
|
|
|
|
|
|
#include "resource.h"
|
2009-05-23 06:11:48 +00:00
|
|
|
#include "../Pad.h"
|
2009-05-23 05:15:03 +00:00
|
|
|
|
|
|
|
HINSTANCE hInst;
|
|
|
|
|
|
|
|
void SysMessage(char *fmt, ...) {
|
|
|
|
va_list list;
|
|
|
|
char tmp[512];
|
|
|
|
|
|
|
|
va_start(list,fmt);
|
|
|
|
vsprintf(tmp,fmt,list);
|
|
|
|
va_end(list);
|
2009-05-23 06:11:48 +00:00
|
|
|
MessageBox(0, tmp, "Pad Plugin Msg", 0);
|
2009-05-23 05:15:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOL CALLBACK ConfigureDlgProc(HWND hW, UINT uMsg, WPARAM wParam, LPARAM lParam) {
|
|
|
|
|
|
|
|
switch(uMsg) {
|
|
|
|
case WM_INITDIALOG:
|
|
|
|
LoadConfig();
|
|
|
|
if (conf.Log) CheckDlgButton(hW, IDC_LOGGING, TRUE);
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
case WM_COMMAND:
|
|
|
|
switch(LOWORD(wParam)) {
|
|
|
|
case IDCANCEL:
|
|
|
|
EndDialog(hW, TRUE);
|
|
|
|
return TRUE;
|
|
|
|
case IDOK:
|
|
|
|
if (IsDlgButtonChecked(hW, IDC_LOGGING))
|
|
|
|
conf.Log = 1;
|
2009-05-23 06:11:48 +00:00
|
|
|
else
|
|
|
|
conf.Log = 0;
|
2009-05-23 05:15:03 +00:00
|
|
|
SaveConfig();
|
|
|
|
EndDialog(hW, FALSE);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOL CALLBACK AboutDlgProc(HWND hW, UINT uMsg, WPARAM wParam, LPARAM lParam) {
|
|
|
|
switch(uMsg) {
|
|
|
|
case WM_INITDIALOG:
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
case WM_COMMAND:
|
|
|
|
switch(LOWORD(wParam)) {
|
|
|
|
case IDOK:
|
|
|
|
EndDialog(hW, FALSE);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2009-05-23 06:11:48 +00:00
|
|
|
EXPORT_C_(void) PADconfigure() {
|
2009-05-23 05:15:03 +00:00
|
|
|
DialogBox(hInst,
|
|
|
|
MAKEINTRESOURCE(IDD_CONFIG),
|
|
|
|
GetActiveWindow(),
|
|
|
|
(DLGPROC)ConfigureDlgProc);
|
|
|
|
}
|
|
|
|
|
2009-05-23 06:11:48 +00:00
|
|
|
EXPORT_C_(void) PADabout() {
|
2009-05-23 05:15:03 +00:00
|
|
|
DialogBox(hInst,
|
|
|
|
MAKEINTRESOURCE(IDD_ABOUT),
|
|
|
|
GetActiveWindow(),
|
|
|
|
(DLGPROC)AboutDlgProc);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOL APIENTRY DllMain(HANDLE hModule, // DLL INIT
|
|
|
|
DWORD dwReason,
|
|
|
|
LPVOID lpReserved) {
|
|
|
|
hInst = (HINSTANCE)hModule;
|
|
|
|
return TRUE; // very quick :)
|
|
|
|
}
|
|
|
|
|