mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-12 00:59:11 +01:00
13 lines
199 B
C
13 lines
199 B
C
|
#pragma once
|
||
|
|
||
|
#include <windows.h>
|
||
|
|
||
|
class DialogManager
|
||
|
{
|
||
|
public:
|
||
|
static void AddDlg(HWND hDialog);
|
||
|
static bool IsDialogMessage(LPMSG message);
|
||
|
static void EnableAll(BOOL enable);
|
||
|
};
|
||
|
|