diff options
Diffstat (limited to 'src/osd/modules/debugger/win/debugbaseinfo.h')
-rw-r--r-- | src/osd/modules/debugger/win/debugbaseinfo.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/osd/modules/debugger/win/debugbaseinfo.h b/src/osd/modules/debugger/win/debugbaseinfo.h index 03fd5a8018d..da874a6b8fd 100644 --- a/src/osd/modules/debugger/win/debugbaseinfo.h +++ b/src/osd/modules/debugger/win/debugbaseinfo.h @@ -5,13 +5,15 @@ // debugbaseinfo.h - Win32 debug window handling // //============================================================ +#ifndef MAME_DEBUGGER_WIN_DEBUGBASEINFO_H +#define MAME_DEBUGGER_WIN_DEBUGBASEINFO_H -#ifndef __DEBUG_WIN_DEBUG_BASE_INFO_H__ -#define __DEBUG_WIN_DEBUG_BASE_INFO_H__ +#pragma once #include "debugwin.h" +namespace osd::debugger::win { class debugbase_info { @@ -35,5 +37,6 @@ private: bool const &m_waiting_for_debugger; }; +} // namespace osd::debugger::win -#endif +#endif // MAME_DEBUGGER_WIN_DEBUGBASEINFO_H |