aboutsummaryrefslogtreecommitdiff
path: root/frontend/plat_dummy.c
blob: b490cff6e2888086ad611705e8abee79263f80d2 (plain)
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/*
 * (C) notaz, 2010
 *
 * This work is licensed under the terms of the GNU GPLv2 or later.
 * See the COPYING file in the top-level directory.
 */

#include "plat.h"

void plat_video_menu_enter(int is_rom_loaded)
{
}

void plat_video_menu_begin(void)
{
}

void plat_video_menu_end(void)
{
}

void plat_video_menu_leave(void)
{
}

void plat_gvideo_open(int is_pal)
{
}

void *plat_gvideo_set_mode(int *w, int *h, int *bpp)
{
	return 0;
}

void *plat_gvideo_flip(void)
{
	return 0;
}

void plat_gvideo_close(void)
{
}

void plat_init(void)
{
}

void plat_finish(void)
{
}

void *plat_prepare_screenshot(int *w, int *h, int *bpp)
{
	return 0;
}

void plat_trigger_vibrate(int pad, int low, int high)
{
}

void plat_minimize(void)
{
}