mirror of
https://github.com/libretro/pcsx2.git
synced 2024-11-25 02:09:52 +00:00
7ad2d919b8
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@1398 96395faa-99c1-11dd-bbfe-3dabce05a288
17 lines
295 B
C++
17 lines
295 B
C++
#pragma once
|
|
#include "CDVDDialog.h"
|
|
#include "resource.h"
|
|
|
|
class CDVDSettingsDlg : public CDVDDialog
|
|
{
|
|
void UpdateDrives();
|
|
|
|
protected:
|
|
void OnInit();
|
|
bool OnMessage(UINT message, WPARAM wParam, LPARAM lParam);
|
|
bool OnCommand(HWND hWnd, UINT id, UINT code);
|
|
|
|
public:
|
|
CDVDSettingsDlg();
|
|
};
|