mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-27 00:05:34 +01:00
18 lines
439 B
C++
18 lines
439 B
C++
// Copyright 2016 Dolphin Emulator Project
|
|
// Licensed under GPLv2+
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
// Intended for containing event functions that are bound to
|
|
// different window controls through wxEvtHandler's Bind()
|
|
// function.
|
|
|
|
class wxUpdateUIEvent;
|
|
|
|
namespace WxEventUtils
|
|
{
|
|
void OnEnableIfCoreNotRunning(wxUpdateUIEvent&);
|
|
void OnEnableIfNetplayNotRunning(wxUpdateUIEvent&);
|
|
} // namespace WxEventUtils
|