blob: 4249c3ef68bf553f6cde1b8476dab73e25b7a562 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
// license:BSD-3-Clause
// copyright-holders:Aaron Giles
/***************************************************************************
generic.h
Generic system layouts.
***************************************************************************/
#ifndef MAME_EMU_LAYOUT_GENERIC_H
#define MAME_EMU_LAYOUT_GENERIC_H
#pragma once
//**************************************************************************
// GLOBAL VARIABLES
//**************************************************************************
// no screens layouts
extern const internal_layout layout_noscreens; // for screenless systems
// single screen layouts
extern const internal_layout layout_monitors; // common monitor aspect ratios
// dual screen layouts
extern const internal_layout layout_dualhsxs; // dual 4:3 screens side-by-side
extern const internal_layout layout_dualhovu; // dual 4:3 screens above and below
extern const internal_layout layout_dualhuov; // dual 4:3 screens below and above
// triple screen layouts
extern const internal_layout layout_triphsxs; // triple 4:3 screens side-by-side
// quad screen layouts
extern const internal_layout layout_quadhsxs; // quad 4:3 screens side-by-side
#endif // MAME_EMU_LAYOUT_GENERIC_H
|