mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 19:43:32 +00:00
fa20edc44d
- Remove most __ASSEMBLER__ __LINKER__ ifdefs - Rename libc/intrin/bits.h to libc/serialize.h - Block pthread cancelation in fchmodat() polyfill - Remove `clang-format off` statements in third_party
22 lines
568 B
C
22 lines
568 B
C
#ifndef COSMOPOLITAN_LIBC_CALLS_STRUCT_FRAMEBUFFERFIXEDSCREENINFO_H_
|
|
#define COSMOPOLITAN_LIBC_CALLS_STRUCT_FRAMEBUFFERFIXEDSCREENINFO_H_
|
|
|
|
struct FrameBufferFixedScreenInfo {
|
|
char id[16];
|
|
uint64_t smem_start;
|
|
uint32_t smem_len;
|
|
uint32_t type;
|
|
uint32_t type_aux;
|
|
uint32_t visual;
|
|
uint16_t xpanstep;
|
|
uint16_t ypanstep;
|
|
uint16_t ywrapstep;
|
|
uint32_t line_length;
|
|
uint64_t mmio_start;
|
|
uint32_t mmio_len;
|
|
uint32_t accel;
|
|
uint16_t capabilities;
|
|
uint16_t reserved[2];
|
|
};
|
|
|
|
#endif /* COSMOPOLITAN_LIBC_CALLS_STRUCT_FRAMEBUFFERFIXEDSCREENINFO_H_ */
|