-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathedid.h
37 lines (26 loc) · 1.01 KB
/
edid.h
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
/**************************************************************
edid.h - Basic EDID generation
(based on edid.S: EDID data template by Carsten Emde)
---------------------------------------------------------
Switchres Modeline generation engine for emulation
License GPL-2.0+
Copyright 2010-2021 Chris Kennedy, Antonio Giner,
Alexandre Wodarczyk, Gil Delescluse
**************************************************************/
#ifndef __EDID_H__
#define __EDID_H__
//============================================================
// TYPE DEFINITIONS
//============================================================
typedef struct edid_block
{
char b[128];
/* char ext1[128];
char ext2[128];
char ext3[128];*/
} edid_block;
//============================================================
// PROTOTYPES
//============================================================
int edid_from_modeline(modeline *mode, monitor_range *range, const char *name, edid_block *edid);
#endif