mirror of
https://github.com/reactos/reactos.git
synced 2024-11-05 06:09:58 +00:00
29 lines
624 B
C
29 lines
624 B
C
/*
|
|
* PROJECT: ReactOS VGA Font Editor
|
|
* LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
|
|
* PURPOSE: PSFv1 (PC Screen) Fonts - Version 1
|
|
* COPYRIGHT: Copyright 2008 Colin Finck (colin@reactos.org)
|
|
*/
|
|
|
|
#ifndef __PSF_H
|
|
#define __PSF_H
|
|
|
|
#define PSF1_MAGIC0 0x36
|
|
#define PSF1_MAGIC1 0x04
|
|
|
|
#define PSF1_MODE512 0x01
|
|
#define PSF1_MODEHASTAB 0x02
|
|
#define PSF1_MODEHASSEQ 0x04
|
|
#define PSF1_MAXMODE 0x05
|
|
|
|
#define PSF1_SEPARATOR 0xFFFF
|
|
#define PSF1_STARTSEQ 0xFFFE
|
|
|
|
typedef struct _PSF1_HEADER
|
|
{
|
|
UCHAR uMagic[2];
|
|
UCHAR uMode;
|
|
UCHAR uCharSize;
|
|
} PSF1_HEADER, *PPSF1_HEADER;
|
|
|
|
#endif
|