mirror of
https://github.com/reactos/reactos.git
synced 2025-06-03 16:30:26 +00:00

The code of the single GPL-2.0 only file "misc.c" was originally derived from GPL-2.0 only devmgmt. I have now replaced it with the same code from LGPL-2.1+ mmc, which makes my application a full GPL-2.0+ work. This is legit, because I know that Thomas Weidenmueller is the original author of the "misc.c" code. svn path=/trunk/; revision=75987
16 lines
329 B
C
16 lines
329 B
C
/*
|
|
* PROJECT: ReactOS VGA Font Editor
|
|
* LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
|
|
* PURPOSE: Raw bitmap fonts
|
|
* COPYRIGHT: Copyright 2008 Colin Finck (colin@reactos.org)
|
|
*/
|
|
|
|
#ifndef __RAW_H
|
|
#define __RAW_H
|
|
|
|
typedef struct _BITMAP_FONT
|
|
{
|
|
UCHAR Bits[2048];
|
|
} BITMAP_FONT, *PBITMAP_FONT;
|
|
|
|
#endif
|