mirror of https://github.com/PCSX2/pcsx2.git
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();
|
|
};
|