Example #1
0
int IpsManagerCreate(HWND hParentWND)
{
	hParent = hParentWND;
	
	FBADialogBox(hAppInst, MAKEINTRESOURCE(IDD_IPS_MANAGER), hParent, (DLGPROC)DefInpProc);
	return 1;
}
Example #2
0
int RomsDirCreate(HWND hParentWND)
{
	hParent = hParentWND;
	
	FBADialogBox(hAppInst, MAKEINTRESOURCE(IDD_ROMSDIR), hParent, (DLGPROC)DefInpProc);
	return 1;
}
Example #3
0
int InpDIPSWCreate()
{
	if (bDrvOkay == 0) {									// No game is loaded
		return 1;
	}

	bOK = false;

	FBADialogBox(hAppInst, MAKEINTRESOURCE(IDD_INPDIP), hScrnWnd, DialogProc);

	return 0;
}
Example #4
0
int SFactdCreate()
{
	if (bShotsFactory) {
		return 1;
	}
	bShotsFactory = 1;
	bOldPause = bRunPause;
	bRunPause = 1;
	AudBlankSound();
//	hSFactdlg=FBACreateDialog(hAppInst,MAKEINTRESOURCE(IDD_CAPTURE),hScrnWnd,DialogProc);
//	if (hSFactdlg==NULL) return 1;
//	WndInMid(hSFactdlg,hScrnWnd);
//	ShowWindow(hSFactdlg,SW_NORMAL);
//	SFactdUpdate();
	FBADialogBox(hAppInst, MAKEINTRESOURCE(IDD_CAPTURE), hScrnWnd, (DLGPROC)DialogProc);
	return 0;
}
Example #5
0
int CreateROMInfo(HWND hParentWND)
{
	hParent = hParentWND;
	
	if (gameAv == NULL) {
		gameAv = (char*)malloc(nBurnDrvCount);
		memset(gameAv, 0, nBurnDrvCount);
	}

	if (gameAv) {
		if (CheckGameAvb() || bRescanRoms) {
			FBADialogBox(hAppInst, MAKEINTRESOURCE(IDD_WAIT), hParent, (DLGPROC)WaitProc);
		}
	}

	return 1;
}
Example #6
0
int InpCheatCreate()
{
	if (bDrvOkay == 0) {									// No game is loaded
		return 1;
	}

	bOK = false;

//	DestroyWindow(hInpCheatDlg);							// Make sure exitted

//	hInpCheatDlg = FBACreateDialog(hAppInst, MAKEINTRESOURCE(IDD_INPCHEAT), hScrnWnd, DialogProc);
//	if (hInpCheatDlg == NULL) {
//		return 1;
//	}

//	WndInMid(hInpCheatDlg, hScrnWnd);
//	ShowWindow(hInpCheatDlg, SW_NORMAL);

	FBADialogBox(hAppInst, MAKEINTRESOURCE(IDD_INPCHEAT), hScrnWnd, (DLGPROC)DialogProc);

	return 0;
}
Example #7
0
void prefMiscCreate(HWND parent)
{
	FBADialogBox(IDD_PREF_MISC, parent, (DLGPROC)prefMiscDlgProc);
}
Example #8
0
void prefAudioCreate(HWND parent)
{
	FBADialogBox(IDD_PREF_AUDIO, parent, (DLGPROC)prefAudioDlgProc);
}
Example #9
0
void prefVideoCreate(HWND parent)
{
	FBADialogBox(IDD_PREF_VIDEO, parent, (DLGPROC)prefVideoDlgProc);
}
Example #10
0
void CPUClockDialog()
{
	FBADialogBox(hAppInst, MAKEINTRESOURCE(IDD_CPUCLOCK), hScrnWnd, (DLGPROC)CPUClockProc);
}
Example #11
0
void ScreenAngleDialog()
{
	FBADialogBox(hAppInst, MAKEINTRESOURCE(IDD_SCREENANGLE), hScrnWnd, (DLGPROC)ScreenAngleProc);
}
Example #12
0
int NumDialCreate(int)
{
	FBADialogBox(hAppInst, MAKEINTRESOURCE(IDD_VALUE), hScrnWnd, (DLGPROC)DefInpProc);

	return 1;
}
Example #13
0
void ScanlineDialog()
{
	FBADialogBox(hAppInst, MAKEINTRESOURCE(IDD_SCANLINE), hScrnWnd, (DLGPROC)ScanlineProc);
}
Example #14
0
void GammaDialog()
{
	FBADialogBox(hAppInst, MAKEINTRESOURCE(IDD_GAMMA), hScrnWnd, (DLGPROC)GammaProc);
}
Example #15
0
void CubicSharpnessDialog()
{
	FBADialogBox(hAppInst, MAKEINTRESOURCE(IDD_SCANLINE), hScrnWnd, (DLGPROC)CubicProc);
}
Example #16
0
void PhosphorDialog()
{
	FBADialogBox(hAppInst, MAKEINTRESOURCE(IDD_PHOSPHOR), hScrnWnd, (DLGPROC)PhosphorProc);
}
Example #17
0
int patchSettingCreate(HWND parent)
{
	FBADialogBox(IDD_IPS, parent, (DLGPROC)IPSDlgProc);
	return 1;
}